Muhamed Faizal
Board Regular
- Joined
- Aug 18, 2011
- Messages
- 204
Using following code, I could make speed of my Macro in Seconds.
Sub Speed()
StartTime = Timer
'
'other code goes here
'
MsgBox "This report prepared in " & Timer - StartTime & "Seconds"
End Sub
How do I convert the time in hh:mm:ss format?
Thanks in advance
Sub Speed()
StartTime = Timer
'
'other code goes here
'
MsgBox "This report prepared in " & Timer - StartTime & "Seconds"
End Sub
How do I convert the time in hh:mm:ss format?
Thanks in advance