This post will guide you how to use Google Sheets DAYS function with syntax and examples.
Description
The Google Sheets DAYS returns the number of days between two dates.
The DAYS function can be used to get the number of days between two given dates in google sheets. The purpose of this function is to get days between dates and its returned values is a number indicating days.
The DAYS function is a build-in function in Google Sheets and it is categorized as a Date function.
Syntax
The syntax of the DAYS function is as below:
= DAYS (end_date,start_date)
Where the DAYS function arguments is:
-
End_date -This is a required argument. The end of the date
-
Start_date – this is a required argument. The start of the date
Note:
- Both two date arguments must be a valid date value, or it will return the #VALUE! Error.
- The DAYS function only works with whole numbers.
- If end dates and start dates are reversed, the DAYS function will return a negative number.
- The DAYS function will return all days between two dates. If you want to calculate all working days between dates, you can use the NETWORKDAYS function in google sheets.
Google Sheets DAYS Function Examples
The below examples will show you how to use google sheets DAYS Function to return the number of days between end_date and start_date.
#1 =DAYS (B2,B1)

Note: the above google sheets formula returns the number of days (1492) between the end date (2025/11/12) and start date (2021/10/12).
Related Posts
Google Sheets LN Function
This post will guide you how to use Google Sheets LN function with syntax and examples. Description The Google Sheets LN function returns the natural logarithm of a given number. And the natural logarithms are based on the constant e ...
Google Sheets INT Function
This post will guide you how to use Google Sheets INT function with syntax and examples. Description The Google Sheets INT function returns the integer portion of a given number. And it will round a given number down to the ...
Google Sheets FLOOR Function
This post will guide you how to use Google Sheets FLOOR function with syntax and examples. Description The Google Sheets FLOOR function returns a number rounded down to the nearest multiple of significance. So it will return a rounded number. ...
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 ...