Hyperlink to another worksheet in the same workbook

D

Dgwood90

When I hyperlink to another worksheet within the same workbook, I receive
Cannot open specified file. This file will be sent to others so I changed
the hyperlink base in properties.
 
D

Dave Peterson

I find the =hyperlink() worksheet function much easier to work with.

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