Hello there,
Having been trying to to get this code to work, the C3 cell is a DDE link with live feed.
What am Iam doing wrong ?
I read the similar posts, and unable to make this work.
Any help will be appreciated.
'Change event
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$C$3" Then
Run "tickcount"
End If
End Sub
'Tick count generation
Sub tickcount()
Range("d3").Value = Range("d3").Value + 1
End Sub
Having been trying to to get this code to work, the C3 cell is a DDE link with live feed.
What am Iam doing wrong ?
I read the similar posts, and unable to make this work.
Any help will be appreciated.
'Change event
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$C$3" Then
Run "tickcount"
End If
End Sub
'Tick count generation
Sub tickcount()
Range("d3").Value = Range("d3").Value + 1
End Sub