Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
There is no reliable worksheet function to enter a static date other than to hit
CTRL + ;(semi-colon) for date or CTRL + SHIFT + ; to enter static time. Here is code that will update Column F any time a change is made to cells in columns A:E Adjust to accommodate "etc." Private Sub Worksheet_Change(ByVal Target As Excel.Range) With Target If .Count 1 Then Exit Sub If Not Intersect(Range("A:E"), .Cells) Is Nothing Then Application.EnableEvents = False If IsEmpty(.Value) Then Cells(.Row, "F").ClearContents Else With .Offset(0, 1) Cells(.Row, "F").Value = Now End With End If Application.EnableEvents = True End If End With End Sub This is sheet event code. Right-click on the sheet tab and "View Code". Copy/paste the above into that sheet module. Gord Dibben MS Excel MVP On Tue, 27 Feb 2007 14:08:33 -0800, Kamran wrote: Hello, Is there any worksheet function available that will record the date when a change is made to a specific row? For example, I have a worksheet tracking several projects with cost, project manager, etc. Anytime there is a change to one of those items, I would like the "Date Last Edited" column to update in that row only. Can this be done? Thanks. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Filling in today's date against every record | Excel Discussion (Misc queries) | |||
Record date cell is inputted | Excel Discussion (Misc queries) | |||
Record the date after matching the names | Excel Discussion (Misc queries) | |||
How can I count a record if it contains a date within a date range | Excel Worksheet Functions | |||
identify first date a record appears | Excel Worksheet Functions |