WORKDAY.INTL Function

Excel Functions › Date & Time

Excel 2010+ Date & Time

The Excel WORKDAY.INTL function is WORKDAY with a configurable weekend — perfect when your “weekend” isn’t Saturday–Sunday (Fri–Sat in much of the Middle East, Sunday-only, or any custom pattern).


Quick answer: 10 working days out with a Friday–Saturday weekend:
=WORKDAY.INTL(A2, 10, 7) // code 7 = Fri-Sat weekend

Syntax

=WORKDAY.INTL(start_date, days, [weekend], [holidays])
ArgumentDescription
start_dateRequiredThe starting date (not counted).
daysRequiredWorking days forward or back.
weekendOptionalWeekend code (1–17) or a 7-character mask like "0000011" (Mon–Sun, 1 = day off).
holidaysOptionalOptional dates to skip.

How to use it

The weekend can be a built-in code (1 = Sat–Sun, 7 = Fri–Sat, 11–17 = single-day weekends) or a 7-character mask string — the real power. "0000011" means Mon–Fri working, Sat–Sun off; "0001000" means only Thursday off:

=WORKDAY.INTL(A2, 5, "0000011", Holidays) // standard week, custom holidays

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

WORKDAY with a configurable weekend - custom or non-Sat/Sun work weeks. Format result cells as Date or Time so they don’t display raw serial numbers.

Practice workbook

📊
Download the free WORKDAY.INTL 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

What’s the weekend mask format?
Seven characters for Mon–Sun, each 1 (non-working) or 0 (working). "0000011" = Sat–Sun off.
What are the numeric codes?
1 = Sat–Sun, 2 = Sun–Mon … 7 = Fri–Sat; 11–17 = single-day weekends (11 = Sunday only).
WORKDAY vs WORKDAY.INTL?
Use plain WORKDAY for standard Sat–Sun weekends; WORKDAY.INTL when the weekend differs.
Which versions have it?
Excel 2010 and later.

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