ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Click a cell and update to current time / date ? (https://www.excelbanter.com/excel-discussion-misc-queries/112607-click-cell-update-current-time-date.html)

Eric

Click a cell and update to current time / date ?
 
Does Excel have following feature for a cell?
Only I click a cell A1 with enter or another ways , then the cell A1 will
display the current time / date?
therefore, I will know when I work with this spreadsheet last time, but it
required o click cell A1 to get updated.
Does anyone know whether excel has this feature?
Thank you in advance
Eric


Carim

Click a cell and update to current time / date ?
 
Hi Eric,

As you Click is used to select a cell, But it is possible with Double
Click event :

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, _
Cancel As Boolean)
With Target
If .Cells.Count 1 Then Exit Sub
If Intersect(.Cells, Me.Range("A1")) Is Nothing Then Exit Sub
If .Column = 1 Then
.Interior.ColorIndex = 6
End If
.Value = Date
End With
End Sub

HTH
Cheers
Carim


CLR

Click a cell and update to current time / date ?
 
Ctrl-semicolon will enter the current date in a selected cell.....
Ctrl-Shift-Colon will enter the current time.....

hth
Vaya con Dios,
Chuck, CABGx3




"Eric" wrote:

Does Excel have following feature for a cell?
Only I click a cell A1 with enter or another ways , then the cell A1 will
display the current time / date?
therefore, I will know when I work with this spreadsheet last time, but it
required o click cell A1 to get updated.
Does anyone know whether excel has this feature?
Thank you in advance
Eric


Eric

Click a cell and update to current time / date ?
 
Thank everyone
Eric


All times are GMT +1. The time now is 03:59 PM.

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