Find the date that is N working days after a start date, skipping weekends.
Copy this formula
=WORKDAY(A2, 10)WORKDAY returns a date a given number of working days ahead, automatically skipping Saturdays and Sundays. Pass a holiday range as the third argument to skip those too.
=WORKDAY(A2, 10, Holidays)→2026-07-0810 business days after the start date.
Custom weekend
=WORKDAY.INTL(A2, 10, 11)Code 11 treats only Sunday as the weekend.
Use NETWORKDAYS(start, end) for the count.
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.