Is there a way to time stamp an entry in excel?

  • Thread starter Thread starter SMEG
  • Start date Start date
S

SMEG

I have tried using an IF() function with a now() as a
false result on a blank cell, however the time changes
whenever another cell using the same formula has data
entered into it... is there another method that want
update successively and without using access?
 
Hi

Ctrl+";" inserts current system date into cell.
Ctrl+":" inserts current system time into cell.
 
you could use a worksheet_change event macro.
right click sheet tab>view code>insert this>save
now when you enter anything in col B below row 1 the date will be put in col
C

Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo fixit
If Target.Row < 2 And Target.Column <> 2 Then Exit Sub
Application.EnableEvents = False
Target.Offset(, 1) = Date
fixit:
Application.EnableEvents = True
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