P
PO
Hi!
I use the following script to insert a hyperlink in the spreadsheet:
With Spreadsheet1.ActiveCell
.Offset(0,5).hyperlink.address = "http://www.google.se"
.Offset(0,5).hyperlink.name = "Open Google"
End With
The problem is that when the user clicks the link Google is opened in the
same window (the current html document is replaced). I want Google to be
opened in a new window.
How do I get the hyperlink document to be displayed in a new window?
Regards
PO
I use the following script to insert a hyperlink in the spreadsheet:
With Spreadsheet1.ActiveCell
.Offset(0,5).hyperlink.address = "http://www.google.se"
.Offset(0,5).hyperlink.name = "Open Google"
End With
The problem is that when the user clicks the link Google is opened in the
same window (the current html document is replaced). I want Google to be
opened in a new window.
How do I get the hyperlink document to be displayed in a new window?
Regards
PO