ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Any way to check what date a specific data entry (cell) was entere (https://www.excelbanter.com/excel-discussion-misc-queries/181146-any-way-check-what-date-specific-data-entry-cell-entere.html)

databird

Any way to check what date a specific data entry (cell) was entere
 
Is there any way to check what date/time a specific data entry (cell) was
entered? I am running Excel 2007. The file is in .xls format, not .xlsx.

GuruGirl

Any way to check what date a specific data entry (cell) was entere
 
Not that I am aware of, unless you check to see when the entire file was last
updated. A difficult question.

"databird" wrote:

Is there any way to check what date/time a specific data entry (cell) was
entered? I am running Excel 2007. The file is in .xls format, not .xlsx.


T. Valko

Any way to check what date a specific data entry (cell) was entere
 
See this:

http://www.mcgimpsey.com/excel/timestamp.html

--
Biff
Microsoft Excel MVP


"databird" wrote in message
...
Is there any way to check what date/time a specific data entry (cell) was
entered? I am running Excel 2007. The file is in .xls format, not .xlsx.




Gord Dibben

Any way to check what date a specific data entry (cell) was entere
 
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
'when entering data in a cell in Col A
On Error GoTo enditall
Application.EnableEvents = False
If Target.Cells.Column = 1 Then
n = Target.Row
If Excel.Range("A" & n).Value < "" Then
Excel.Range("B" & n).Value = Format(Now, "dd mm yyyy h:mm:ss AM/PM")
End If
End If
enditall:
Application.EnableEvents = True
End S

As you enter data in column A, the date/time will be entered in column B

This is worksheet event code. Right-click on the sheet tab and "View Code".

Copy/paste into that sheet module. Adjust to suit. Alt + q to return to the
Excel window.


Gord Dibben MS Excel MVP

On Mon, 24 Mar 2008 18:11:02 -0700, databird
wrote:

Is there any way to check what date/time a specific data entry (cell) was
entered? I am running Excel 2007. The file is in .xls format, not .xlsx.



databird

Any way to check what date a specific data entry (cell) was entere
 
So in other words, unless I implemented these specific methods prior to
entry, there's no way to retroactively go back and look at when certain
values were entered.

Damn. Good to know for future reference.


All times are GMT +1. The time now is 01:22 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com