Reputation: 319
I am using this
doc.FormFields("ddShippingtype").DropDown.value
But it's returning position of the selected value in the dropdown list how can I get the actual text that's been selected?
Currently it's just returning Integers like 1, 2, ... based on the what the position is of the selected value in the dropdown list.
I just can't get this to work any help is appreciated. Thanks
Upvotes: 3
Views: 4999
Reputation: 2862
Rohan, I believe this is what you're after:
doc.FormFields("ddShippingtype").Result
Hope this helps. If not, let me know.
Upvotes: 1