WORKDAY Function

Excel Functions › Date & Time

All versions Date & Time

The Excel WORKDAY function returns the date a number of working days before or after a start date, skipping weekends and any holidays you list — the tool for delivery dates, SLAs, and project deadlines.


Quick answer: the date 10 working days out:
=WORKDAY(A2, 10, Holidays) // skips weekends + holidays - format as date

Syntax

=WORKDAY(start_date, days, [holidays])
ArgumentDescription
start_dateRequiredThe starting date (not counted).
daysRequiredWorking days forward (positive) or back (negative).
holidaysOptionalOptional range of dates to skip in addition to weekends.

How to use it

The start date itself is not counted — WORKDAY(Friday, 1) returns the next Monday. Negative days count backward. For custom weekends (e.g. Fri–Sat), use WORKDAY.INTL. To count working days between two dates, use NETWORKDAYS.

Remember Excel’s date system: every date is a serial number (days since Jan 1, 1900 — so 1 = that day, 46000-ish = today) and every time is a fraction of a day (0.5 = noon). If a result shows a raw number, just apply a date or time cell format.

Try it: interactive demo

Live demo

Adjust the input and watch the formula and result update.

Result:

Tips & gotchas

Date N working days away, skipping weekends and holidays - deadlines and SLAs. Format result cells as Date or Time so they don’t display raw serial numbers.

Practice workbook

📊
Download the free WORKDAY practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Is the start date counted?
No — counting begins the next day. WORKDAY(Mon, 1) returns Tuesday.
How do I exclude holidays?
List them in a range and pass it as the third argument; WORKDAY skips those dates too.
What if my weekend isn’t Sat–Sun?
Use WORKDAY.INTL with a weekend code or 7-character mask.
Can days be negative?
Yes — negative values return a date that many working days in the past.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: DATE · TODAY · DATEDIF · EOMONTH · TEXT