Oct 24 2023 04:36 PM
I have created hyperlink formulas in excel to refer to another tab in same spreadsheet for additional data entry. Below is an example of the formula:
=IF(I26=Data!$M$3,HYPERLINK("#'Linked Notes'!A"&N26,Tasks!H26&" Notes")," ")
The cell with the hyperlink is then copied using =J26 and organized with associated data using INDEX and similar functions. I want the hyperlink in J26 to remain active at the end of the organization, so I can quickly access the 'Linked Notes' tab. However, as soon as I use =J26, the hyperlink is not returned, just the friendly text. Can you recommend a trick to keeping the hyperlink active?
Oct 25 2023 01:37 AM
@JG2023Help A direct cell reference "just" gets the value from that cell, not other things like a hyperlink. To get a (dynamic) hyperlink, you must have the HYPERLINK function in that cell.
Oct 25 2023 01:40 AM
SolutionHi @JG2023Help,
When you use a formula like `=J26` to replicate the content of a cell to another location in Excel, you are copying the computed value or outcome of the formula, not the actual hyperlink itself.
You can try to use this method:
Using a helper column
=HYPERLINK("#'Linked Notes'!A"&N26,Tasks!H26&" Notes")
Please click Mark as Best Response & Like if my post helped you to solve your issue.
This will help others to find the correct solution easily. It also closes the item.
If the post was useful in other ways, please consider giving it Like.
Kindest regards,
Leon Pavesic
(LinkedIn)
Oct 30 2023 10:03 AM