I\'m trying to get my VBA routine to interact with a page that uses JavaScript, and have been successful in the past. After a recent update, it no longer works. At this po
Try this:
Dim CurrentWindow As HTMLWindowProxy: Set CurrentWindow = ie.Document.parentWindow Call CurrentWindow.execScript("exportData(workOrderSearchForm)")
But first you will need to include Microsoft HTML Object Library under References (Tools>References)