This post will guide you how to use Google Sheets TODAY function with syntax and examples.
Description
The Google Sheets TODAY function get the current date as a date value. And it will be updated each time when your worksheet is changed or opened. This function does not need to add any arguments.
You can use the TODAY function to get the current date displayed on your worksheet. And it also can be used for calculating intervals. For example, if you want to know that person’s age (he was born in 1984), you can use the following formula:
=YEAR(TODAY())-1984
This formula will use the TODAY function as an argument for the YEAR function to get the current year, and then subtracts 1984, getting his age.
The TODAY function is a build-in function in Google Sheets and it is categorized as a Date function.
Syntax
The syntax of the TODAY function is as below:
=TODAY()
There are no any arguments for the TODAY function, but you still need to use empty parentheses ().
Note:
- TODAY function will be updated on every edit made to the spreadsheet and it will impact spreadsheet performance.
- TODAY function will create a date without the current time, and if you wish to get the current date and time, and you can use the NOW function.
- TODAY function will always get the current date and the last date in the spreadsheet was recalculated, rather than remaining at the date when it was first entered.
Google Sheets TODAY Function Examples
The below examples will show you how to use google sheets TODAY Function to return the current system date.
1# using the TODAY function to get the current date, enter the following formula in Cell B1.
=TODAY()

2# Get the current date and then subtracts 10 days, using the following formula:
=TODAY() -10

3# Get the number of days between the current date and 03/14/2022, type the following formula:
=DATEVALUE("03/14/2019")-TODAY()

4# Get the current day of the month, using the following formula:
=DAY(TODAY())

5# Get the current month of the year, type the following formula in Cell B1:
=MONTH(TODAY())

Related Posts
Add Months To Date In Google Sheets
It is important to adjust time periods when performing financial modeling. In Google Sheets, you can use the MONTH function to add a specific number of months to a date. The MONTH function takes one argument: the number of months ...
Google Sheets EXP Function
This post will guide you how to use Google Sheets EXP function with syntax and examples. Description The Google Sheets EXP function returns e raised to the power of a number. The constant e is equal to 2.71828182845904, and it ...
Google Sheets FACT Function
This post will guide you how to use Google Sheets FACT function with syntax and examples. Description The Google Sheets FACT function returns the factorial of a given number. The factorial of a given number is equal to 1*2*3…* number. ...
Google Sheets EVEN Function
This post will guide you how to use Google Sheets EVEN function with syntax and examples. Description The Google Sheets EVEN function rounds a given number up to the nearest even integer. You can use the EVEN function to return ...
Google Sheets COUNTBLANK Function
This post will guide you how to use Google Sheets COUNTBLANK function with syntax and examples. Description The Google Sheets COUNTBLANK function use to count the number of empty cells in a range of cells. You can use the COUNTBLANK ...
Google Sheets DEGREES Function
This post will guide you how to use Google Sheets DEGREES function with syntax and examples. Description The Google Sheets DEGREES function converts radians into degrees. And it will return a numeric value. For examples, if you pass the PI() function into ...
Google Sheets COSH Function
This post will guide you how to use Google Sheets COSH function with syntax and examples. Description The Google Sheets COSH function returns the hyperbolic cosine of a given angle. The purpose of this function is used to get hyperbolic ...
Google Sheets COS Function
This post will guide you how to use Google Sheets COS function with syntax and examples. Description The Google Sheets COS function returns the cosine of a given angle. If you want to supply an angle to COS function in ...
Google Sheets COMBINA Function
This post will guide you how to use Google Sheets COMBINA function with syntax and examples. Description The Google Sheets COMBINA function returns the number of combinations for a given number of items and it includes repetitions. You can use ...
Google Sheets COMBIN Function
This post will guide you how to use Google Sheets COMBIN function with syntax and examples. Description The Google Sheets COMBIN function returns the number of combinations for a given number of items. And you can use the COMBIN function ...