I am using excel RTD exported from thinkorswim. I like to get a simple pop up box whenever an RTD value changes. I looked online and found an example:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$F$4" Then
MsgBox Target.Value & " " & Target.Offset(0, 1).Value
End If
End Sub
Unfortunately it only works with actual text values, excel can't detect RTD changes using the above method. Any ideas?
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$F$4" Then
MsgBox Target.Value & " " & Target.Offset(0, 1).Value
End If
End Sub
Unfortunately it only works with actual text values, excel can't detect RTD changes using the above method. Any ideas?