I'm trying to select a value from a dropdown on a IE page.
I have tried a lot of methods. It doesn't do anything.
Codes I have tried, to select the value with "EVR" (there is only one value in the drop down):
Application.Wait Now + #12:00:06 AM# IE.Visible = True 'IE.document.getElementById("fileOnlineReturnTaxType").Value = "EVR" 'IE.document.getElementsByName("taxType").Value = "84" 'Set oSelect = IE.document.getElementById("fileOnlineReturnTaxType") ' oSelect.Focus ' oSelect.selectedIndex = 1 ' oSelect.FireEvent "onchange" 'IE.document.getElementById("fileOnlineReturnTaxType").Click 'Set Link3 = IE.document.getElementsByTagName("span") ' For Each t In Link3 ' If t.innerText = "Select a tax type..." Then ' MsgBox (t.innerText) ' t.Click ' Exit For 'End If 'Next t 
IE.document.getElementsByName("taxType").Valueat debug? Is the value "Select Tax Type"? Look at Microsoft Internet Controls and HTML library, you can then set the object properly so, you can put the drop down in an object and debug a little better.