Summary

The Excel WORKDAY function returns a date in the future or past that is a given number of working days from a specified start date, excluding weekends and (optionally) holidays. You can use the WORKDAY function to calculate things like start dates, delivery dates, and completion dates that need to factor in working and non-working days.

Purpose 

Get a date n working days in the future or past

Return value 

A serial number representing a date in Excel.

Syntax

=WORKDAY(start_date,days,[holidays])
  • start_date - The date from which to start.
  • days - Working days before or after start_date.
  • holidays - [optional] A list of dates that are non-working days.

How to use 

The WORKDAY function calculates a date that is a given number of working days from a specified start date, automatically excluding weekends and, optionally, holidays. You can use the WORKDAY function to calculate project start dates, delivery dates, due dates, and other dates that must consider both working and non-working days. Note that WORKDAY will automatically exclude Saturdays and Sundays but will only exclude holidays if they are provided.

The WORKDAY function takes three arguments:

  • start_date - the date from which to start counting. When calculating a result, WORKDAY does not include the start date as a work day. 
  • days - the number of days in the future or past to calculate a workday. Use a positive number for days to calculate dates in the future, and a negative number for past dates. 
  • holidays - an optional argument to specify non-working dates that should be skipped when computing a result. Holidays must be provided as a range or array that contains valid Excel dates. If holidays are not provided, WORKDAY will treat only Saturdays and Sundays as non-working days. 

The WORKDAY function explained

To illustrate how WORKDAY works, assume we are scheduling a task that takes 5 working days, starting on Monday, July 1, 2024. The goal is to calculate a date that is 5 working days after July 1, 2024. If we simply add 5 to the start date, Excel will return Saturday, July 6:

="1-Jul-2024"+5 // returns "6-Jul-2024"

If however, we use WORKDAY to calculate a date 5 days after July 1, it returns Monday, July 8, 2024:

=WORKDAY("1-Jul-2024",5) // returns "8-Jul-2024"

This is because WORKDAY automatically skips Saturday and Sunday when it calculates a result. If we extend the formula to provide holidays, one of which overlaps the date range, WORKDAY returns Tuesday, July 9, 2024, since Thursday, July 4, 2024 is a non-working day and is also skipped in the calculation:

=WORKDAY("1-Jul-2024",5,{"4-Jul-2024";"2-Sep-2024"}) // returns "9-Jul-2024"

Note: the holidays above are provided as an array constant, but more typically holidays are provided as a range. Remember that holidays must be valid Excel dates. The name of the holiday makes no difference.

Of course, in real life, you will not hardcode dates directly into formulas. You will instead refer to dates on the worksheet with cell references. The screen below shows the three formulas above "ported" to a workbook with cell references:

Basic WORKDAY function example

The formula in D5 does not use WORKDAY and simply adds 5 days to the start date:

=B5+C5 // returns "6-Jul-2024"

The formula in D6 uses the WORKDAY function but does not provide any holidays:

=WORKDAY(B6,C6)// returns "8-Jul-2024"

The formula in D7 provides holidays in the range G5:G6:

=WORKDAY(B7,C7,G5:G6) // returns "9-Jul-2024"

In all cases, the start date in column B and the days in column D are the same.

Worksheet Example

In the worksheet below, Column B contains a variety of different start dates, column C contains the number of days to use, and "holidays" is the named range F5:F13. The formula in cell D5 is:

=WORKDAY(B5,C5,holidays)

WORKDAY function worksheet example

As the formula is copied down, WORKDAY calculates a date n working days from the start date using the value in column C for days. Notice that WORKDAY automatically excludes Saturdays, Sundays, and overlapping holidays in the calculated result.

Note: named ranges automatically behave like absolute references so there is no need to lock the reference to "holidays" before copying the formula. If you prefer not to use a named range, use an absolute reference like $F$5:$F$13 instead.

Visualized Example

It can be hard to visualize what days WORKDAY is excluding when it calculates a result. The worksheet below contains a more detailed example that shows non-working days shaded in gray in columns D and E:

WORKDAY function visualized example

In the example above, the WORKDAY function is used to calculate a date 5 working days after 23-Dec-2024. The formulas in G5 and G6 show the result with and without the holidays in B11:B13:

=WORKDAY(start,days)
=WORKDAY(start,days,holidays)

The first formula (G5) excludes weekends only and returns December 30, 2024. The second formula (G6) excludes weekends and holidays and returns January 2, 2025. The dates in columns D and E are not required in this solution, they exist only to help visualize how the WORKDAY function evaluates working and non-working days and arrives at a final result. The shading and highlighting is applied with conditional formatting. For a full explanation with details, see this page.

Example - is this date a workday?

One problem you might run into is how to test a date to determine whether it is a workday. You can use WORKDAY for this task, but the formula is not immediately obvious. Essentially, we need to "trick" WORKDAY into evaluating a given date by shifting the date back one day and then asking for the next workday. You can see this approach in the worksheet below. The formula in cell D5 is:

=WORKDAY(B5-1,1,holidays)=B5

WORKDAY function - is this date a workday?

For a more detailed explanation, see this example: Date is Workday.

Custom Weekends

By default, WORKDAY will exclude weekends (Saturday and Sunday). If you need to customize which days of the week are considered weekend days, use the more robust WORKDAY.INTL function. WORKDAY.INTL can be configured to treat any day of the week as a working or non-working day.

Recommendations

  • Use cell references for the start date, days, and holidays to make it easy to adjust the formula quickly.
  • Switch to the more flexible WORKDAY.INTL function if you need to customize non-working days.
  • WORKDAY returns a date. If you need to calculate the number of working days between two dates, see the NETWORKDAYS function or the more flexible NETWORKDAYS.INTL function.

Notes

  • WORKDAY returns a date that is a given number of working days from a specified start_date
  • Use a positive number for days to calculate dates in the future, and a negative number for past dates. 
  • WORKDAY automatically ignores Saturday and Sunday. Switch to WORKDAY.INTL to customize this behavior.
  • If days is not numeric, WORKDAY will return a #VALUE! error.
  • If days is zero, WORKDAY will return the start_date unchanged.
  • Holidays must be provided as valid Excel dates, typically in a range.
  • When calculating a result, WORKDAY does not include the start date as a work day.
Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi - I'm Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.