Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Lexus
 
Posts: n/a
Default Hyperlink from one cell to another

Does anyone know how to make it so a user can click on an Excel cell and be
hyperlinked to another cell on another tab?

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
paul
 
Posts: n/a
Default Hyperlink from one cell to another

have you tried looking at help for hyperlinks?
=hyperlink("[book1]Sheet2!A1","click here")
Help says
You can create hyperlinks within a worksheet to jump from one cell to
another cell. For example, if the active worksheet is the sheet named June in
the workbook named Budget, the following formula creates a hyperlink to cell
E56. The link text itself is the value in cell E56.

=HYPERLINK("[Budget]June!E56", E56)

To jump to a different sheet in the same workbook, change the name of the
sheet in the link. In the previous example, to create a link to cell E56 on
the September sheet, change the word "June" to "September."




--
paul
remove nospam for email addy!



"Lexus" wrote:

Does anyone know how to make it so a user can click on an Excel cell and be
hyperlinked to another cell on another tab?

Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Don Guillett
 
Posts: n/a
Default Hyperlink from one cell to another

in a cell use ctrl+kplace in this documentchange text to suit

OR use a double_click (or right click) event in the sheet code.
right click sheet tabview codecopy/paste this

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
If Target.Address = "$A$9" Then _
Application.Goto Sheets("sheet2").Range("a2")
End Sub
--
Don Guillett
SalesAid Software

"Lexus" wrote in message
...
Does anyone know how to make it so a user can click on an Excel cell and
be
hyperlinked to another cell on another tab?

Thanks!



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
hyperlink - link one cell to another in a worksheet. how? Drewz Excel Worksheet Functions 1 October 20th 05 04:09 PM
Possible Lookup Table Karen Excel Worksheet Functions 5 June 8th 05 09:43 PM
Hyperlink a word within a cell kchambers Excel Discussion (Misc queries) 2 March 9th 05 03:29 PM
Using a formula in a Hyperlink Cell reference sslabbe Excel Discussion (Misc queries) 4 December 10th 04 12:30 AM
GET.CELL Biff Excel Worksheet Functions 2 November 24th 04 07:16 PM


All times are GMT +1. The time now is 01:35 PM.

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

About Us

"It's about Microsoft Excel"