when i put distributor numbers in chrome box from excel… then various numbers will be shown… but i have to select only one specific number that matches the first excel number for example if i type 762349843 in input text product then various numbers will be shown like 6524785…65415782…85487351…873648763… but it has to select the only first number from excel… like this number 873648763… so may i know how to solve this ?
showing results under input text product will be mixed with numbers and texts like
fdsujhf76432tr17654ihfdoi
hjfdajfjh762748kjdfkj5455
uygterg887987jgjk5jbjjjkjh
kagfug576jgdsjjhdgjag87ag
then from excel it has to get this number uygterg887987jgjk5jbjjjkjh and it has to click on the number according to matching reults like it has to click on this num uygterg887987jgjk5jbjjjkjh…so please help me
Save the output string to a string variable say str_text,
create an array or list of string variable say list_text,
then split str_text based on newlines (split(str_text,vbnewline)), which will give you an array of these strings.
then use list_text.contains(your value to check) to see if your excel value is present in that.