WORKDAY function

Category: Date and time
Introduced: Excel 2003

Summary

Returns the serial number of the date before or after a specified number of workdays

Syntax

WORKDAY(start_date, days, [holidays]) The WORKDAY function syntax has the following arguments:
• Start_date Required. A date that represents the start date.
• Days Required. The number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date.
• Holidays Optional. An optional list of one or more dates to exclude from the working calendar, such as state and federal holidays and floating holidays. The list can be either a range of cells that contain the dates or an array constant of the serial numbers that represent the dates.
Important: Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text.

Example

=WORKDAY(A2,A3)
=WORKDAY(A2,A3,A4:A6)

Microsoft Support Page

https://support.microsoft.com/en-us/office/workday-function-f764a5b7-05fc-4494-9486-60d494efbf33

Back to Functions