Hyperlinks within worksheets

R

Rick Wilson

How do I create a hyperlink from one place to another within a worksheet so
that when the worksheet is copied, the hyperlink references to the copied
worksheet and not the original sheet. (Excel 2003)
Thanks
 
D

Dave Peterson

David McRitchie posted this and it might help you:

=HYPERLINK("#"&CELL("address",C5),C5)
=HYPERLINK("#"&CELL("address",sheetone!C5),sheetone!C5)
=HYPERLINK("#"&CELL("address",'sheet two'!C5),'sheet two'!C5)
 
Top