timestamp on each row...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how can I create a timestamp on each row in excel that updates per
change..like as a last modified date but instead of all changes make it row
specific
 
On the module for the specific worksheet...

Private Sub Worksheet_Change(ByVal Target As Range)
Cells(Target.Row, 1).Value = Now
End Sub

This drops the time stamp in Column A.

Dale Preuss
 

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

Similar Threads

Timestamping 7
Handling hhmmss time format 6
Time averaging raw data 3
Timestamp Macro 7
DateTime format 4
Excel Help to copy information from one row at a time to another sheet 1
Time Comparison 1
timestamp comments 15

Back
Top