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

TODAY Function in Excel

Return the current date as a dynamic Excel date value.

Syntax

TODAY()

What it returns

Returns the current date and updates when the worksheet recalculates.

What TODAY does

TODAY returns the current date based on your system clock, without a time component. It is useful for due dates, aging reports, rolling deadlines, and formulas that should always compare against the current day.

Practical examples

Show today's date

=TODAY()

This returns the current date and updates when Excel recalculates the workbook.

Set a deadline five days from today

=TODAY()+5

This is a simple pattern for follow-up dates, trial periods, or reminders.

Common mistakes and notes

TODAY is volatile

The result changes whenever the workbook recalculates. If you need a fixed timestamp, do not rely on TODAY alone.

TODAY returns a date serial, not static text

Format the cell as a date if you want it to display cleanly. Under the hood, Excel stores it as a number.

Use NOW when time matters

TODAY returns only the date. If the formula needs the current time as well, use NOW.

Related functions

Related articles

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

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
BeginnerFeatures
2018-05-23

5 New and Creative Ways To Utilize Excel

Excel is a program that is beneficial to anyone who wants to organize the utility bills or for professionals who need to stay organized at the office. To most Excel users, it can seem like a pretty cut and dry program. W...

8 min read
Read Article
FormattingFormulas
2018-03-27

How to Use the SUMIF and SUMIFS Functions in Excel

Lessen the time it takes to compute complex equations with the SUMIF and SUMIFS functions on MS Excel. This update may be just what you've been waiting for. Follow this in-depth, easy-to-follow guide to get started...

#criteria#formulas#functions#math
5 min read
Read Article
Product
2014-06-17

Excel for iPad - Paste as Values

A description of my Office for iPad experience with Excel Paste as Values functionality and my decision to get an Office 365 Personal account....

#excel-for-ipad#cloud
4 min read
Read Article
FormulasIntermediateTime and Date
2011-01-12

Use the DATEDIF Function to Quickly Calculate Date Difference in Excel

Use the DATEDIF Function in Excel to find the number of Years, Months and Days between two dates. Only documented in Excel 2000 but in later versions....

3 min read
Read Article
AdvancedFormulas
2010-11-13

Single-Cell Array Formula in Excel

The Evaluate Formula dialog box shows interim calculations for single-cell array formulas to reveal array values Excel holds in internal memory....

#arrays
4 min read
Read Article
FormulasIntermediate
2010-11-11

Multi-Cell Array Formula in Excel

A Multi-Cell Array formula is entered by selecting a range, typing a formula, then holding the Control and Shift keys down while pressing Enter....

#arrays
4 min read
Read Article

Official documentation