Hyperlink using filename

G

Guest

I am trying to hyperlink to a different worksheet in the same workbook using
the hyperlink and cell functions. Here is the formula:

=HYPERLINK(CELL("filename",GMT96X_PMC_PDU_ReWork!A10 ),"RW")

When clicking on the hyperlink a window pops up "Cannot open the specified
file." I believe the issue is with the path that is created with filename
and the other worksheet / cell reference, but I do not see it.

All help is appreceiated.
 
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)


so...

=HYPERLINK("#"&CELL("address",'GMT96X_PMC_PDU_ReWork'!A10),"RW")

If I didn't screw up the copy|pasting.
 
G

Guest

GREAT!. That worked. Thanks.
--
rst


Dave Peterson said:
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)


so...

=HYPERLINK("#"&CELL("address",'GMT96X_PMC_PDU_ReWork'!A10),"RW")

If I didn't screw up the copy|pasting.
 

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

Top