WorksheetFunction.Days360 method (Excel)
Returns the number of days between two dates based on a 360-day year (twelve 30-day months), which is used in some accounting calculations.
Syntax
expression.Days360 (Arg1, Arg2, Arg3)
expression A variable that represents a WorksheetFunction object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Arg1 - Arg2 | Required | Variant | The two dates between which you want to know the number of days. If start_date (Arg1) occurs after end_date (Arg2), Days360 returns a negative number. Dates should be entered by using the DATE function, or as results of other formulas or functions. |
Arg3 | Optional | Variant | A Boolean value that specifies whether to use the U.S. or European method in the calculation. |
Return value
Double
Remarks
Use this function to help compute payments if your accounting system is based on twelve 30-day months.
The following table contains the values for Arg3.
Method | Defined |
---|---|
False or omitted | U.S. (NASD) method. If the starting date is the 31st of a month, it becomes equal to the 30th of the same month. If the ending date is the 31st of a month and the starting date is earlier than the 30th of a month, the ending date becomes equal to the 1st of the next month; otherwise, the ending date becomes equal to the 30th of the same month. |
True | European method. Starting dates and ending dates that occur on the 31st of a month become equal to the 30th of the same month. |
Caution
When you use the Days360 function to calculate the number of days between two dates, an unexpected value is returned. For example, when you use the Days360 function with a start date of February 28 and with an end date of March 28, a value of 28 days is returned. You expect a value of 30 days to be returned for every full month. To work around this behavior, use the following formula:
=DAYS360(start_date,end_date,IF(method=TRUE,TRUE,IF(AND(method=FALSE,MONTH(start_date)=2,DAY(start_date)>=28,MONTH(end_date)=2,DAY(end_date)>=28),TRUE,FALSE)))
Microsoft Excel stores dates as sequential serial numbers so they can be used in calculations. By default, January 1, 1900 is serial number 1, and January 1, 2008 is serial number 39448 because it is 39,448 days after January 1, 1900. Microsoft Excel for the Macintosh uses a different date system as its default.
Note
Visual Basic for Applications (VBA) calculates serial dates differently than Excel. In VBA, serial number 1 is December 31, 1899, rather than January 1, 1900.
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.