Good morning shilpz
Format cell A1 to a time format of your choice then run this macro. It will update the cell every second :
HTH![]()
Public CntTme As Double Sub StartClock() Sheets("Sheet1").Range("A1").Value = Now() CntTme = Now + TimeSerial(0, 0, 1) Application.OnTime CntTme, "'" & ThisWorkbook.Name & "'!StartClock", , True End Sub
DominicB
Bookmarks