TIME STAMP inserted with f5 key ?

  • Thread starter Thread starter mike k
  • Start date Start date
M

mike k

is there a way to get a time stamp
inserted in excel 2000 like in
notepad where you just press f5 ???

thanks
 
Ctrl ; + space + Ctrl :

or use a macro

Sub EnterDate_Time()
ActiveCell.Value = Now
ActiveCell.NumberFormat = "mm/dd/yy hh:mm:ss"
End Sub
 
Back
Top