TODAY Function In Excel & Google Sheets
Download the example workbook
This tutorial demonstrates how to use the TODAY Function in Excel and Google Sheets to get the current date.
Insert Today’s Date
The TODAY Function insert’s today’s date:
=TODAY()
This is different than the NOW Function which will insert today’s date and time:
=NOW()
You can learn how to format Today’s date by reading our Format Dates article.
By adding 1 to the TODAY Function you can get tomorrow’s date:
=TODAY()+1
Or by using the EDATE Function you can jump months ahead or backwards:
=EDATE(B3,C3)
Today’s Day Number
Use the DAY Function to get today’s day number:
=DAY(TODAY())
Today’s Month
Or use the MONTH Function to get today’s month:
=MONTH(TODAY())
(Click the MONTH Function link to learn about how to display the month name instead of number)
Today’s Year
Or use the YEAR Function for today’s year:
=YEAR(TODAY())
Today’s Weekday Number
You can also use the WEEKDAY Function to calculate Today’s day of the week (1-7):
=WEEKDAY(TODAY(),1)
(Click the WEEKDAY Function link to learn about how to convert the weekday number to the weekday name)
Today’s Week Number
Or the WEEKNUM Function to calculate today’s week number of the year:
=WEEKNUM(TODAY(),1)
TODAY in Google Sheets
The TODAY Function works exactly the same in Google Sheets as in Excel: