Back to functions
Date & Time2026-03-146 related articles

NOW Function in Excel

Return the current date and time based on the workbook's latest recalculation.

Syntax

NOW()

What it returns

Returns the current date-time serial number formatted according to the cell format.

What NOW does

NOW returns the current date and time. It is a volatile function, which means Excel recalculates it when the workbook recalculates.

That makes it useful for live timestamps, aging calculations, and dashboards that depend on the current moment.

Practical examples

Display the current date and time

=NOW()

Format the cell as date, time, or date-time depending on how much of the result you want to show.

Calculate elapsed hours

=(NOW()-A2)*24

If A2 holds an earlier date-time, this formula converts the elapsed time into hours.

Common mistakes and notes

NOW updates automatically

If you need a permanent timestamp, NOW is the wrong tool on its own. Use a keyboard shortcut or a controlled workflow instead.

Formatting changes what you see, not what you store

The result is one serial number. Formatting decides whether you see the date, the time, or both.

Volatile formulas can add overhead

Used sparingly, NOW is fine. Used across large models, it can make recalculation heavier than necessary.

Related functions

Related articles

Deep dives, troubleshooting guides, and practical examples that use NOW.

FormulasTroubleshooting
2026-05-19

How to Find and Fix Circular References in Excel

Learn how to find a circular reference in Excel, trace the formula loop, fix common circular reference errors, and handle intentional iterative formulas....

#formulas#troubleshooting#circular references
9 min read
Read Article
AI in ExcelAdvanced
2026-03-18

The Karpathy Loop for Excel: How Autoresearch Changes the Way We Optimize Spreadsheets

Learn how Karpathy's autoresearch pattern — the AI experiment loop that ran 700 tests in two days — applies to Excel formula optimization, VBA macros, and AI-assisted spreadsheet workflows....

#ai#automation#formulas#optimization
9 min read
Read Article
Time and Date
2024-01-02

4 Methods to Insert a Timestamp in Excel Cell

Explore easy methods to insert timestamp in Excel. Learn shortcuts, formulas, and VBA for effective data tracking in our concise guide....

#date#shortcuts#time#timestamp
5 min read
Read Article
FormulasIntermediateTime and Date
2022-01-21

How to Calculate Hours Between Two Dates and Times in Excel

Learn how to calculate hours between two dates and times in Excel using simple formulas for elapsed time, decimal hours, overnight shifts, and workdays....

#time
5 min read
Read Article
BeginnerFormulas
2019-06-20

The NOW Function in Excel: What It is and How to Use It

Are you wondering how to use the now function in Excel? Look no further. Our easy step-by-step guide has all of the information that you need to know....

#time
3 min read
Read Article
BeginnerTime and Date
2010-08-31

Date and Time Calculation in Excel

Date and Time are the components of a serial number value, and are represented by an integer and decimal, respectively....

3 min read
Read Article

Official documentation