Is it possible to store multiple hyperlinks in a cell for Excel

  • Thread starter Thread starter Kart
  • Start date Start date
K

Kart

Is it possible to store multiple hyperlinks in a cell for Excel 2003
 
No, but it is easy to get the same effect.

Put the hyperlinks in a column somewhere.

In A1, put a Data Validation to allow you to pick one of the links.
In B1 enter:
=HYPERLINK(A1)

So you click on A1 to pick the link and then click on B1 to activate the link.

If you want to activate ALL the links, then use an Event macro.
 
Try this code from Bob Umlas.

You can't do it with a regular hyperlink, but you can do it with VBA code,
something like this -- right-click the sheet tab, select View Code, put this
in (assumes the cell inquestion is F4):

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = "$F$4" Then
ThisWorkbook.FollowHyperlink "http://www.whatever.com", _
NewWindow:=True
ThisWorkbook.FollowHyperlink "http://www.xyz.com", NewWindow:=True
ThisWorkbook.FollowHyperlink "http://www.abc.com", NewWindow:=True
End If
End Sub


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top