A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
If what you expect is to automatically highlight the destination cell (Sheet2!A52 in your case) when it's reached (selected) after clicking on an hyperlink; then yes that's doable:
This requires a short macro to force the recalculation of the selected cell. Consequently this will have a cost as the macro will run each time the selection changes...
CONDITIONAL FORMATTING
- Select the target cell (Sheet2!A52 in your case)
- Home / Conditional Formatting / New Rule...
- Choose Use a formula to determine which cells to format
- Enter the formula: =ADDRESS(ROW(),COLUMN())=CELL("address")
- Choose your formatting and validate
MACRO
- [Alt]+F11 to open the VBA window
- Double-click on Sheet2 under VBAProject...
- Copy the following code and paste it into the right part of the VBA window
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Target.Calculate
End Sub
Finally close the VBA window and test.
Hope this helps
Cheers
Lz.