I have a spreadsheet which contains a hyperlink based on the contents of another cell. I need the hyperlink to be based on the display (formatted) value rather than the data value of the source cell. Is this possible without resorting to VBA? Example:
Actual values:
| A | B |
| 1 | =HYPERLINK("../Form_"&A6) |
| 2 | =HYPERLINK("../Form_"&A7) |
| 3 | =HYPERLINK("../Form_"&A8) |
Displayed As:
Column A custom format: "Form_"000
| A | B |
| Form_001 | ../Form_001 |
| Form_002 | ../Form_002 |
| Form_003 | ../Form_003 |
Functional Value:
| A | B |
| 1 | file:///../Form_001 |
| 2 | file:///../Form_002 |
| 3 | file:///../Form_003 |
=HYPERLINK("X:/Path/to/Form_"&TEXT(A2,"000"). Post as an answer and get your just dues :) – matt wilkie Dec 6 '11 at 23:20