A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Right-click on the sheet tab
Choose "View Code"
Within the menu click Insert \ Module
Paste in the code below
Close the VBA editor
Apply this formulas in the sheet
C2: =ShowHyperlink([@Example])
D2: =ShowHyperlink([@Example2])
Add a conditional formatting on B2:B6 using this formula
=COUNTIF($C:$C,$D2)>0
That's it.
Andreas.
Function ShowHyperlink(ByVal Where As Range) As String
ShowHyperlink = Where.Hyperlinks(1).Address
End Function