Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi:
I have a cell reference being calculated as a formula. (for example: formula in cell C2 results in the string Names!$F$5). I need a hyperlink in a cell to link to the address being computed. I tried =HYPERLINK(C2,"testlink") When I click on the hyperlink 'testlink', I get an error saying "Cannot open specified file". What am I doing wrong? Sameer |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What's in C2?
Maybe you need: =hyperlink("http://" & c2, "testlink") or =hyperlink("mailto:" & c2, "testlink") or =hyperlink("file:////" & c2, "testlink") or =hyperlink("file:////" & c2 & ".jpg", "testlink") wrote: Hi: I have a cell reference being calculated as a formula. (for example: formula in cell C2 results in the string Names!$F$5). I need a hyperlink in a cell to link to the address being computed. I tried =HYPERLINK(C2,"testlink") When I click on the hyperlink 'testlink', I get an error saying "Cannot open specified file". What am I doing wrong? Sameer -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dynamic Hyperlink | Excel Discussion (Misc queries) | |||
dynamic hyperlink | Excel Discussion (Misc queries) | |||
Dynamic Hyperlink | Excel Discussion (Misc queries) | |||
dynamic hyperlink | Excel Discussion (Misc queries) | |||
Dynamic Hyperlink | Excel Worksheet Functions |