← All comparisons

WORKDAY vs NETWORKDAYS: two sides of business days

Mirror twins: NETWORKDAYS answers "how many business days between these dates?", WORKDAY answers "what date is N business days from here?". Mixing them up — or forgetting their different inclusivity rules — is where deadline sheets go wrong by a day.

The differences at a glance

WORKDAYNETWORKDAYS
QuestionDate + N working days → what DATE?Date range → how MANY working days?
ReturnsA dateA count
Includes the start date?No — day 1 is the NEXT working dayYes — both endpoints count if they're weekdays
HolidaysOptional 3rd-argument rangeSame
Custom weekendsWORKDAY.INTL (e.g. "0000011" mask)NETWORKDAYS.INTL, same masks
CompatibilityUniversalUniversal (verified in every version of all three apps we test; .INTL variants Excel 2010+)

Which should you use?

Compatibility (from executed tests)

Both functions and their .INTL variants execute identically across every version of all three apps we test. The inclusivity asymmetry (NETWORKDAYS counts the start day, WORKDAY doesn't) is identical everywhere too — it's a semantics gotcha, not a compatibility one.

Example formulas

Due 10 business days after issue=WORKDAY(A2,10)
Working days between two dates=NETWORKDAYS(A2,B2)
Fri-Sat weekend (e.g. Middle East)=NETWORKDAYS.INTL(A2,B2,7)

Full per-version details on each function page: WORKDAY · NETWORKDAYS.