D
Dr. Sachin Wagh
Is there any way to custom time format to have milli-seconds also apart from
HH:MM:SS
tHANKS & rEGARDS
HH:MM:SS
tHANKS & rEGARDS
Mike H said:Hi,
Yes you can do that but need to bear in mind that while the workbook is
updating this clock the performance 'may' deteriorate. Try this.
Put these 2 short macros in 'This Workbook'
Private Sub Workbook_Open()
Application.OnTime Now + TimeValue("00:00:8"), "CalcMacro"
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.OnTime dTime, "CalcMacro", , False
End Sub
And this one in an ordinary module
Public dTime As Date
Sub CalcMacro()
dTime = Now + TimeValue("00:00:08")
Application.OnTime dTime, "CalcMacro"
Application.Calculate
End Sub
You can set the time interval to update to what you want, currently set at 8
seconds.
Mike