A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
That wouldn't have worked in E2003 it would give a circulare reference. Put this formula in B1
=IF(A1="","",NOW())
However, I don't think that what you want because it will update when Excel calculates. so try this macro. Right click your sheet tab, view code and paste this in
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
Application.EnableEvents = False
Target.Offset(, 1) = Now
End If
Application.EnableEvents = True
End Sub