hello,
Whats the maximum nr of Worksheet_Change events per second/millisecond?
I have a program which put data in Excel cells.
I try to catch them all with Worksheet_Change. like this:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("d3:e40")) Is Nothing Then
Open "c:\log.txt" For Append As #1
Write #1, Date & "," & Time & " , " & Target.Row & " , " & Target.Column
Close #1
End If
End Sub
It happens often that the source program writes 5 values in the Range d3:e40
and Worksheet_change it misses 1 of the 5 values
thanks
frank
Whats the maximum nr of Worksheet_Change events per second/millisecond?
I have a program which put data in Excel cells.
I try to catch them all with Worksheet_Change. like this:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("d3:e40")) Is Nothing Then
Open "c:\log.txt" For Append As #1
Write #1, Date & "," & Time & " , " & Target.Row & " , " & Target.Column
Close #1
End If
End Sub
It happens often that the source program writes 5 values in the Range d3:e40
and Worksheet_change it misses 1 of the 5 values
thanks
frank