View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
John[_22_] John[_22_] is offline
external usenet poster
 
Posts: 694
Default Logging an update

Hi Howard

If you replace this line
If Target.Address = "$A$1" And Target.Value < "" Then
With this:
If Target.Address = "$A$1" Then
Remove ( and Target.Value<"")
It will print time & Date even if the cell is empty.
HTH
John
"Howard" wrote in message
...
The other day some real great people gave me some code to enter "NOW" in a
cell when the cell is double clicked. It kind of works, but not exactly like
I need. I need for the code to insert the current date and time in cell $A$1
when the cell is double clicked, regardless of what is already in that cell.
The code is put in the Workbook module because it effects more than one
sheet. The code I have follows:

Private Sub Workbook_SheetBeforeDoubleClick(ByVal Sh As Object, ByVal Target _
As Range, Cancel As Boolean)
If Target.Address = "$A$1" And Target.Value<"" Then
Target.Value = Format(Now, "mm/dd/yyyy hh:mm:ss")
End If
Cancel = True
End Sub

This seems to work the first time the cell is double clicked, but after
that, it won't change the information. The "NOW" information is used to show
that last time the page was updated, and it may be changed more than once.

Any suggestions?
Thanks everyone,
--
Howard