ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Logging an update (https://www.excelbanter.com/excel-programming/441363-logging-update.html)

howard

Logging an update
 
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

Dave Peterson

Logging an update
 
You're checking two conditions. That A1 is the cell that you're doubleclicking
in and that it's empty to start.

If Target.Address = "$A$1" And Target.Value<"" Then

If you don't want to check for emptyness:

If Target.Address = "$A$1" Then



Howard wrote:

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


--

Dave Peterson

John[_22_]

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




All times are GMT +1. The time now is 03:01 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com