P
PeCoNe
Hallo,
I am trying to solve following:
Sheet Monitor
BEG END IEX IEX
Time Time Date Time
15:15:00 17:30:00 31-12-2012 15:14:36 <= format cells is *13:30:55
Fields are named as headers
VBA Project Blad1 (Monitor)
Private Sub Worksheet_Calculate()
With Sheets("Monitor")
If .Range("IEXtime") < .Range("BEGtime") Then
Exit Sub
End If
IEXtime is less than BEGtime and still program does not exit sub.
Why?
I am trying to solve following:
Sheet Monitor
BEG END IEX IEX
Time Time Date Time
15:15:00 17:30:00 31-12-2012 15:14:36 <= format cells is *13:30:55
Fields are named as headers
VBA Project Blad1 (Monitor)
Private Sub Worksheet_Calculate()
With Sheets("Monitor")
If .Range("IEXtime") < .Range("BEGtime") Then
Exit Sub
End If
IEXtime is less than BEGtime and still program does not exit sub.
Why?