Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Is it possible to store multiple hyperlinks in a cell for Excel

Is it possible to store multiple hyperlinks in a cell for Excel 2003
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default Is it possible to store multiple hyperlinks in a cell for Excel

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.
--
Gary''s Student - gsnu200825


"Kart" wrote:

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

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Is it possible to store multiple hyperlinks in a cell for Excel

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

On Fri, 9 Jan 2009 04:24:08 -0800, Kart
wrote:

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


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
multiple Hyperlinks one Excel cell? Jody Excel Worksheet Functions 4 May 20th 08 11:35 PM
Multiple Hyperlinks in 1 Cell Pam Excel Programming 0 November 2nd 06 04:32 PM
Store Multiple Cell Values (Cell History) Han[_3_] Excel Programming 2 August 23rd 06 07:34 PM
How do I remove multiple hyperlinks in the same cell (Excel)? Hyper Charts and Charting in Excel 0 January 16th 06 06:24 PM
Excel should allow multiple hyperlinks in a single cell mrpb Excel Discussion (Misc queries) 1 January 18th 05 01:51 PM


All times are GMT +1. The time now is 10:25 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"