Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You don't give much to work with. The following macro, placed in the sheet
module, will put the date and time in A1. Format A1 for date and time. Post back and provide more info on what you have and what you want. To access the sheet module, right-click the sheet module and select View Code. "X" out of the module to return to your sheet. HTH Otto Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = False Range("A1") = Now Application.EnableEvents = True End Sub "srini" wrote in message ... |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
As Otto says, a bit short on info. However, if you want to have a date and
time record of every change that happens on the sheet, try this modified version of Ottos code. Will list a date and time in column A for each change of any cell, basically every time you hit enter or a calculation takes place. Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = False Range("A100").End(xlUp).Offset(1, 0) = Now Application.EnableEvents = True End Sub If 100 entries is not enough then up the ante to: Range("A10000").End(xlUp).Offset(1, 0) = Now HTH Regards, Howard "srini" wrote in message ... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Tracking change time/date | Excel Worksheet Functions | |||
how do i change all text case in a given worksheet at one time | Excel Worksheet Functions | |||
change date based on time | Excel Discussion (Misc queries) | |||
how do i keep a time/date register of every change occurred in a c | Excel Worksheet Functions | |||
how do I format cells to change date and time to just date | Excel Discussion (Misc queries) |