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 + Shft + : - inserts the time
Ctrl + ; = inserts date
 
Ctrl ; + space + Ctrl :

or use a macro

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top