Thread
:
How to write a macro to get the system time in excel 97
View Single Post
#
2
Dave Peterson
Posts: n/a
Option Explicit
Sub testme()
MsgBox Now
MsgBox Date
MsgBox Format(Now, "hh:mm:ss")
End Sub
Raj wrote:
--
Dave Peterson
Reply With Quote