Clear, practical technology insights BSOD Code Lookup · Windows Error Code Lookup · Wi-Fi Troubleshooting · PC Troubleshooting Checklist

How to Get the Current Date and Time in Excel

Use TODAY for a date that updates automatically, NOW for date and time, or a keyboard shortcut for a fixed timestamp, with practical date formulas.

Table of Contents

Use =TODAY() when you want Excel to display the current date and update it when the workbook recalculates. Use =NOW() when you need both the current date and time. For a date that must remain fixed, use a keyboard shortcut instead of a formula.

Current date and time functions in Excel

TODAY, NOW, and fixed dates

NeedMethodBehavior
Current date=TODAY()Updates when Excel recalculates
Current date and time=NOW()Updates when Excel recalculates
Fixed current dateCtrl + ;Does not change
Fixed current timeCtrl + Shift + ;Does not change

TODAY takes no arguments: enter =TODAY() and press Enter. If the result appears as a number, apply a Date number format to the cell.

Excel automatic calculation setting

Useful TODAY formulas

The following examples update as the date changes:

  • =TODAY()+10 returns the date ten days from today.
  • =TODAY()-7 returns the date seven days ago.
  • =DAY(TODAY()) returns today's day number.
  • =MONTH(TODAY()) returns the current month number.
  • =YEAR(TODAY()) returns the current year.

Worksheet for TODAY formula examples

TODAY function result in Excel

Extract the day, month, or year

DAY, MONTH, and YEAR return individual parts of a date. These functions return numbers, not formatted date strings.

DAY combined with TODAY

MONTH combined with TODAY

For a worksheet date stored in another cell, reference that cell instead—for example, =YEAR(B2). See how to separate day, month, and year in Excel.

Add days to the current date

Excel stores dates as serial numbers, so adding 10 adds ten calendar days:

Adding ten days with TODAY

=YEAR(TODAY())-2000 calculates the difference between the current year number and 2000. It does not calculate a person's exact age because it ignores the month and day.

YEAR and TODAY formula example

If TODAY shows the wrong date

  • Check the computer's date, time, and time zone; Excel relies on the system clock.
  • Ensure workbook calculation is set to Automatic under File > Options > Formulas.
  • Press F9 to recalculate if calculation is manual.
  • Check the cell's number format. A valid date may display as a serial number or in an unexpected regional order.

For date values imported as text, use a conversion approach such as the DATEVALUE function before performing date arithmetic.

Discussion

Reader Comments 0

Sign in with email or Google to join the discussion.