Can I have mulitple web page results from a Hyperlink?

J

Juan Pablo González

Not that I know of. Are you expecting both pages to open when you click on
the hyperlink ? you could do that with a macro... something like

Sub OpenLinks()
With ActiveWorkbook
.FollowHyperlink Address:="http://www.yahoo.com", NewWindow:=True
.FollowHyperlink Address:="http://www.google.com", NewWindow:=True
End With
End Sub
 
N

nastech

Thankyou, I will try that, yes I am trying to open two web pages with one
click.
I will check out macro's / if that will all some kind of wildcards:
to try that for multiple hyperlinks, that all go to the same core address,
but have different variables in the center, e.g.:
=HYPERLINK($O$6&M99&$O$7,"1")
=HYPERLINK($P$6&P99&$P$7,"2")

To be a combination of both, for thousands of links, will need to reference
each line, with 2 HYPERLINKS, in the sheet. Thankyou, -Nastech
 
N

nastech

tried, but am not fluent in creating macro's "coding"? how do I enter
reference to 2 pre-existing hyperlinks, in the macro / add to each line (will
make a new column if have to).
 
Top