PDA

View Full Version : UPDATING NOW() AUTOMATICALLY



bensonjr
09-17-2009, 09:07 AM
UPDATING NOW() AUTOMATICALLY


I have the =NOW() formula in several worksheets. How can I have them automatically updated, let’s say every 5 seconds? Thank you very much for your help . . .

mdmackillop
09-17-2009, 09:15 AM
Sub Update()
Application.OnTime Now + TimeValue("00:00:05"), "MyMacro"
End Sub

Sub MyMacro()
Calculate
Update
End Sub