O
Otto Moehrbach
Excel 2002, WinXP
I have the following code to give me the elapsed time for a macro to run.
Time1 = Time
'My code
Time2 = Time
MsgBox Time1 & " " & Time2
MsgBox Format(Time2 - Time1, "00:00:00")
The first MsgBox gives me 2 times that are some 17 seconds apart. That's
accurate.
The second MsgBox shows 00:00:00 no matter what.
What is wrong with the second MsgBox line?
Thanks for all your help. Otto
I have the following code to give me the elapsed time for a macro to run.
Time1 = Time
'My code
Time2 = Time
MsgBox Time1 & " " & Time2
MsgBox Format(Time2 - Time1, "00:00:00")
The first MsgBox gives me 2 times that are some 17 seconds apart. That's
accurate.
The second MsgBox shows 00:00:00 no matter what.
What is wrong with the second MsgBox line?
Thanks for all your help. Otto