Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to get the time and date updated in a cell
continuously at a given interval (eg: each minute)? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This may not be the best way, but it does work. Insert this code into a
module then run UpdateTime Modify the cell address and format to what you need Sub UpdateTime() Application.OnTime Now + TimeValue("00:01:00"), procedu="InsertTime" End Sub Private Sub InsertTime() Cells(1, 1).Value = Now UpdateTime End Sub Paul D "Bill Lanier" wrote in message ... Is there a way to get the time and date updated in a cell continuously at a given interval (eg: each minute)? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date-time updates every cell? | Excel Worksheet Functions | |||
Continuous Evaluation of Time Function NOW() ?? | Excel Worksheet Functions | |||
Overlapping time calculations and automatic time updates | Excel Worksheet Functions | |||
Continuous dates and time | Charts and Charting in Excel | |||
Date updates from worksheet to chart & changes date to a date series! Help!! | Charts and Charting in Excel |