DAYS360 Function: A Brief

The DAYS360 function in Excel is used to calculate the number of days between two dates based on a 360-day year. This function is especially useful in financial analysis, where 12 months of 30 days each (360 days total) are used instead of the actual calendar days.

Note: DAYS360 function will return #VALUE! error, when there is an issue with your inputs or use invalid starting or ending dates. You can fix this by providing a proper time string without any hidden characters.

Objective

Value Returned by the function

Aim to calculate the day between two dates in a 360-day year.

The DAYS360 Function will find the number of days between the starting year and ending year in a 360-day year.

DAYS360 Function: A Syntax

=DAYS360(start_date, end_date, [method])

Basic Examples of Using DAYS360 Function:

In the following example, I’ve shown how to use the DAYS360 function with different start and end dates. These examples cover a variety of common scenarios, helping you understand how the function works in different cases.

Formula Used :=DAYS360(B4, C4)

S.no

Start Date

End Date

Result

Comments

1

01 February 2022

01 March 2022

30

February is treated as a full 30-day month.

2

01 July 2022

31 December 2022

180

A clean 6 months, each with 30 days.

3

20 August 2022

19 November 2022

89

Almost 3 months, but not quite!

4

10 April 2022

10 January 2023

270

That’s 9 months of 30-day blocks.

5

10 March 2022

09 March 2024

719

Exactly 5 months × 30 days.

6

05 January 2022

04 January 2023

359

Just 1 day short of a full 360-day year.

7

23-13-2023

29 August 2024

#VALUE!

Returns #Value! Error, because the starting date is not a valid one

The detailed explanation of the above examples are:

Examples of Using the DAYS360 Function with the TRUE or FALSE Method:

In this example, the start date is 28 February 2024 and the end date is 31 March 2024.

If you use the TRUE argument in the DAYS360 formula, Excel applies the European method, which treats the 31st as the 30th. So, the date range from 28-Feb to 31-Mar is treated as 28-Feb to 30-Mar, resulting in 32 days.

If you use FALSE or leave the argument blank, Excel applies the US method, where the end date logic is adjusted differently. In this case, 28-Feb to 31-Mar is treated as is, and it returns 33 days based on the 360-day year system.

This example should help you understand how the optional argument in the DAYS360 function affects the result. It is not mandatory to use the argument unless your calculation requires a specific method to solve the scenario.

That’s it. This article was originally published on: How to Use Excel DAYS360 Function?