Hi,
I have a website
1] I need to enter the data into the website site fields through excel vba.
2] i am stuck at combo box, there are few combo box which should pick the data from excel cell
3] I am able to do the same with text boxes but i am not able figure out the combo box i have the code for combo box as below.
Code
Dim obj As Object
For Each obj In IE.document.getElementsByTagName("select")(1).Options
obj.Selected = True
If obj.Selected = (UCase(obj.innerText) = UCase(ThisWorkbook.Sheets("RawData").range("E4" & 4).Value)) Then
y = obj.Value
Exit For
Else
y = y
End If
Next obj
y = 0
Display More
But this does not work i have IE 11 version andexce2010
Please help me with this thanks in advance.