Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank everyone
Eric |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
insert date | Excel Worksheet Functions | |||
Populating Last Saved Date in Cell AND also update that same cell in Header | Excel Discussion (Misc queries) | |||
How to auto update a cell with a current date | Excel Discussion (Misc queries) | |||
Update cell based on date range | Excel Discussion (Misc queries) | |||
How do you continuously update time and date in an Excel cell? | Excel Worksheet Functions |