Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default how to find date and time of each cell ?

Does anyone know if there is a way to find out when each cell in the excel
was made/changed ? date and time? maybe there is a program for it or
software?
please let me know at

thank you !
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default how to find date and time of each cell ?

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count 1 Then Exit Sub
Set r = ActiveSheet.UsedRange.SpecialCells(xlComments)
If Intersect(r, Target) Is Nothing Then
Else
Target.Comment.Delete
End If

With Target
.AddComment
.Comment.Visible = False
.Comment.Text Text:=Format(Now(), "mm/dd/yyyy")
End With
End Sub

This macro should be pasted in the worksheet code area. Whenever a cell is
changed, the time and date are recorded as a comment for that cell.
--
Gary''s Student - gsnu200769


"mikerush7" wrote:

Does anyone know if there is a way to find out when each cell in the excel
was made/changed ? date and time? maybe there is a program for it or
software?
please let me know at

thank you !

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,624
Default how to find date and time of each cell ?

Take a look he

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

Alternatively, see XL Help for Track Changes, which requires that you
share the workbook.

In article ,
mikerush7 wrote:

Does anyone know if there is a way to find out when each cell in the excel
was made/changed ? date and time? maybe there is a program for it or
software?
please let me know at

thank you !

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Query to find last saved date/Time Dean Excel Worksheet Functions 2 May 11th 06 09:33 AM
Combined date time cell to separate date & time components Mark Ada Excel Discussion (Misc queries) 1 December 2nd 04 02:48 AM
Combined date time cell to separate date & time components Mark Ada Excel Discussion (Misc queries) 1 December 2nd 04 12:07 AM
Combined date time cell to separate date & time components Mark Ada Excel Discussion (Misc queries) 1 December 2nd 04 12:07 AM
Combined date time cell to separate date & time components Mark Ada Excel Worksheet Functions 1 December 2nd 04 12:04 AM


All times are GMT +1. The time now is 12:40 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"