SheetRocks
Documentation/Formulas/WORKDAY

WORKDAY

Returns the date that is the specified number of working days before or after the start date.

Syntax

WORKDAY(start_date, days, [holidays])

Arguments

Argument Description Required
start_date The start date of the period. Required
days The number of working days to add (positive) or subtract (negative). Required
holidays List of holidays that should be excluded from the working days. Optional

Examples

Add 10 working days to start date

=WORKDAY(A1, 10)
Result ⇒ 1/15/2024
A
1 1/1/2024

Calculate due date excluding holidays

=WORKDAY(A1, 5, A2)
Result ⇒ 1/8/2024
A
1 1/1/2024
2 1/15/2024

Go back 5 working days

=WORKDAY(A1, -5)
Result ⇒ 1/8/2024
A
1 1/15/2024

Related Functions

Other Date/Time functions:


← Back to Formula Reference