VBA code to select a value from webform dropdown based on value in excel workbook
问题 I'm needing to select a value from a webform dropdown based on the value in the excel book where I'm writing the macro. So far I've been able to navigate to the website and click the desired tab with the following vba code: Sub FillInternetForm() Dim ie As Object Set ie = CreateObject("InternetExplorer.Application") ie.Navigate "website I'm navigating to" ie.Visible = True While ie.Busy DoEvents 'wait until IE is done loading page. Wend Set AllHyperLinks = ie.Document.getElementsByTagName("A"