Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm trying to find a way to automatically show the date a cell is updated.
I'm creating a status report where column A contains text that is updated frequently. I would like to find a way for column B to show a date of the most recent update to the column A cell. This is not the date the spreadsheet is updated, but just the cell in question. Thanks! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Paste following code into your worksheet's code page
(right-click worksheet's tab, select View code) '---------------------------------------------------------------------------------------- Private Sub Worksheet_Change(ByVal Target As Range) Dim rRange As Range Dim rcell As Range Set rRange = Intersect(Target, Columns("A")) If Not rRange Is Nothing Then For Each rcell In rRange rcell.Offset(0, 1) = Now Next rcell End If End Sub '---------------------------------------------------------------------------------------- HTH -- AP "Odonata" a écrit dans le message de news: ... I'm trying to find a way to automatically show the date a cell is updated. I'm creating a status report where column A contains text that is updated frequently. I would like to find a way for column B to show a date of the most recent update to the column A cell. This is not the date the spreadsheet is updated, but just the cell in question. Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
canceling auto date update | New Users to Excel | |||
update cells to today date in a list of dates | Excel Worksheet Functions | |||
update cells to today date in a list of dates | Excel Worksheet Functions | |||
Is there a function to show future date | Excel Worksheet Functions | |||
need to show date countdown | Excel Worksheet Functions |