Using the following code to open a bunch of links in column A of my doc, looking to have it wait 3sec after opening the link and then moving onto the next but instead of opening a new window or tab I want it to simply use the window already open.
Sub OpenLinks()
For Each vCell In Range("A2:A" & Cells(Rows.Count, "A").End(xlUp).Row)
Set oIE = CreateObject("InternetExplorer.Application")
oIE.Visible = True
oIE.Navigate (vCell.Value)
Next vCell
End Sub
Try this:
But, as always I recommend you consider using With/End With instead of Set.