How to Auto Update Current Time in Excel (3 Easy Ways)

 

Method 1 – Using the NOW Function 

Steps:

  • Select cell C4 and enter this formula:
=NOW()
  • Press Enter.
  • It will enter the current time on the cell taken from your computer.

 using now function to auto update current time in excel

Each time you change your workbook, the formula will recalculate automatically and update the current time.

Note: If you want to change the format of the time, select the cell and go to the Home > More Number Formats tool under the section called Numbers. Then, change the format accordingly.

Read More: How to Insert Current Date and Time in Excel


Method 2 – Applying VBA Code

Steps:

  • Press ALT+F11. The VBA window will open from the Developer tab.

applying vba code to auto update current time in excel

  • Go to the Insert tab in the VBA window. 
  • From the options available, select Module.

inserting module to auto update current time in excel

  • A new module window called “Module 1” will open. 
  • Insert the following VBA code in the module and save it by pressing Ctrl+S:
Dim SchedRecalc As Date
Sub Recalc()
With Sheet1.Range("C3")
.Value = Format(Time, "hh:mm:ss AM/PM")
End With
Call SetTime
End Sub
Sub SetTime()
SchedRecalc = Now + TimeValue("00:00:01")
Application.OnTime SchedRecalc, "Recalc"
End Sub
Sub Disable()
On Error Resume Next
Application.OnTime EarliestTime:=SchedRecalc, Procedure:="Recalc", Schedule:=False
End Sub

Note: In the 3rd line, C4 is the cell reference where I want the current time. You use your required one.

  • Return to your worksheet and press ALT+F8.
  • A dialogue box called Macro will open.
  • Select SetTime and click on Run.

running macro to auto update current time in excel

  • You will find the current time being entered in your desired cell and updating every second, just like a running clock.

  • If you want to stop the clock, press ALT+F8.
  • Select Disable.
  • Click Run.

Stopping Auto Updated Current Time in Excel

  • The clock will stop running.

We will get a dynamic clock showing the updated time.

Read More: Excel Current Time Formula


Method 3 – Utilizing a Keyboard Function

Steps:

  • Choose cell C4 and press Ctrl+Shift+
  • The latest time from your computer will be in cell C4.


Download the Practice Workbook


Related Articles


<< Go Back to Timestamp | Date-Time in Excel | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Rifat Hassan
Rifat Hassan

Rifat Hassan, BSc, Electrical and Electronic Engineering, Bangladesh University of Engineering and Technology, has worked with the ExcelDemy project for almost 2 years. Within these 2 years, he has written over 250 articles. He has also conducted a few Boot Camp sessions on effective coding, especially Visual Basic for Applications (VBA). Currently, he is working as a Software Developer to develop and deploy additional add-ins to enhance the customers with a more sophisticated experience with Microsoft Office Suits,... Read Full Bio

2 Comments
  1. Hello Rifat
    I’m trying to use the Now function to update a cell’s time.
    Exactly like your post.
    I’m using an old version of excel.
    When I open your file everything works.
    I tried inserting the macros into a file and just nothing else works anymore…
    I must be making some very stupid mistake but I confess I can’t understand… Could you check the file? I just think I can’t attach it here… Right? Could I email you? Thank you!

    • Hi GVS,
      This is Mrinmoy. I’m replying to you on behalf of Mr. Rifat. Currently, he has been shifted to another project. If you don’t mind, you can send your file to my email address at [email protected]. I will try to help you as much as possible.
      Regards!

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo