Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I need a time stamp in each row of a ca. 300 row spreadsheet of user
information such that the timestamp is automatically updated if any cell in its respective row is changed. My question: is this possible using Excel? |
#2
![]() |
|||
|
|||
![]()
Only with VBA code
Assuming your time stamp is in column A. If some other column, change the column number in the code below right click the tab for the sheet in question and choose View Code, then paste this in Private Sub Worksheet_Change(ByVal Target As Range) ' next line assumes column A - change the number if a different column Const ColumnNumber = 1 Cells(Target.Row, ColumnNumber).Value = Now() End Sub "dt" wrote: I need a time stamp in each row of a ca. 300 row spreadsheet of user information such that the timestamp is automatically updated if any cell in its respective row is changed. My question: is this possible using Excel? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
html to excel | Excel Discussion (Misc queries) | |||
Excel error - Startup (and Acrobat PDFMaker) | Setting up and Configuration of Excel | |||
Merge from Excel to Excel | Excel Discussion (Misc queries) | |||
Excel 2002 and 2000 co-install. Control Which Starts ? | Excel Discussion (Misc queries) | |||
Shortcut file fails to open | Excel Discussion (Misc queries) |