I'm trying to trigger a macro (dependant on cell address) whenever any dde linked cell value is changed.
I tried Workbook.SetLinkOnData and Worksheet_Calculate event (with a dummy formula to trigger the event), but the problem is that none of them returns the address of the updated cell.
So is there a way to get the address of the updated cell to use it with my macro?
This is my macro
Public Sub UpdateCell (Byval strTargetAddress as String)
'Some code
End Sub
Thank u in advance.