View Single Post
  #2   Report Post  
Juan Pablo González
 
Posts: n/a
Default

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

--
Regards,

Juan Pablo González
Excel MVP

"nastech" wrote in message
...
Is it possible to have two/more web pages come up for one hyperlink
command /
is there a 2nd function you use in conjuction with? (if, and,
range:range,
array?)

=HYPERLINK((www.x.com),HYPERLINK(www.y.com),"b")
=HYPERLINK(HYPERLINK(www.x.com),HYPERLINK(www.y.com),"b"))

Don't think =And( was going to work, Thanks