Hi,
I am using the FollowHyperlink VBA function in Excel 2007 to bring up Web pages. It works but has a slight problem. I am using Firefox and it opens a new tab each time I execute the function. I would rather it bring up the Web page on the same tab each time the function is executed. I was using NewWindow:=True and changed it to NewWindow:=False (the default) but it still opens a new tab in Firefox each time the function is executed.
I am on a 32 bit Windows 7 Operating system. The code I am executing is shown below. The String Variable "Hyper" contains the URL I want to open.
I am using the FollowHyperlink VBA function in Excel 2007 to bring up Web pages. It works but has a slight problem. I am using Firefox and it opens a new tab each time I execute the function. I would rather it bring up the Web page on the same tab each time the function is executed. I was using NewWindow:=True and changed it to NewWindow:=False (the default) but it still opens a new tab in Firefox each time the function is executed.
I am on a 32 bit Windows 7 Operating system. The code I am executing is shown below. The String Variable "Hyper" contains the URL I want to open.
Code:
ActiveWorkbook.FollowHyperlink Address:=Hyper, NewWindow:=False