WorksheetFunction.Days360 Method

Excel Developer Reference

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 tables 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.

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.

See Also