braindiesel
Well-known Member
- Joined
- Mar 16, 2009
- Messages
- 571
- Office Version
- 365
- 2019
- 2010
- Platform
- Windows
I have a macro I want to run whenever a certain cell changes.
Here is the code I am using now
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "mydest" Then
myhyperlink
End If
End Sub
The challenge is mydest contains a formula that pulls the name to hyperlink to. The formula itself doesn't change, just the result.
Is this an easy fix?
Here is the code I am using now
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "mydest" Then
myhyperlink
End If
End Sub
The challenge is mydest contains a formula that pulls the name to hyperlink to. The formula itself doesn't change, just the result.
Is this an easy fix?