how to include real time & date on a worksheet

B

Barb R.

I was supplied with a small macro that would enter the current date/time in a
cell when invoked.

Sub NOWTIME()
ActiveCell.Value = Format(Now(), "mm-dd-yyyy h:mm:ss AM/PM")
End Sub

Is that what you want?

Barb Reinhardt
 
Top