Jose,
If you add some code as suggested by Harlan Grove, you can then use
=IF(C4="Done",__NOW__,"")
Here is that code
Same general idea I had, but I'd do it differently. I'd have the Open event
add the workbook-level name __NOW__ with the date/time value when the
workbook was first opened by a user (rather than the developer, who would
need to leave __NOW__ undefined or initialized to #N/A). Then the name
__NOW__ could be used anywhere in any formula in the workbook.
Private Sub Workbook_Open()
On Error GoTo CleanUp
Application.EnableEvents = False
If IsError(Evaluate("__NOW__")) Then _
Me.Names.Add Name:="__NOW__", RefersTo:=Now
CleanUp:
Application.EnableEvents = True
End Sub
---------------------------------
--
HTH
Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
Jose in SF said:
The formula below works to drop the date in the cells under a column
showing the date done, but when I reopen the file on subsequent days, the
date changes to the current date and does not remain the date I entered
"done". Is there a way to have date drop into a cell when I enter "done" in
C4 remain the date I entered "done" , and not change to the current date?