How to add business days to a date
✓ Verified in LibreOffice 25.8.7.3Find the date N working days from now — due dates, SLAs, ship-by estimates that skip weekends.
The formula
| App | Formula | Notes |
|---|---|---|
| Excel | =WORKDAY(A2,10) | Day 1 is the NEXT working day (the start date itself isn't counted). Add a holidays range as the 3rd argument. |
| Google Sheets | =WORKDAY(A2,10) | Identical. |
| LibreOffice Calc | =WORKDAY(A2,10) | Identical. |
How it works
WORKDAY steps forward by working days, skipping Saturdays and Sundays: 10 business days after Friday July 24, 2026 is Friday August 7 (the two intervening weekends are jumped). It counts from the day AFTER the start date, so the start day itself never counts. Pass a range of holiday dates as the third argument to skip those too, use a negative number to go backwards, and WORKDAY.INTL if your weekend isn't Saturday-Sunday. To count working days between two existing dates instead, use NETWORKDAYS.
Verified, not just documented
We ran =TEXT(WORKDAY(DATE(2026,7,24),10),"YYYY-MM-DD") in LibreOffice 25.8.7.3 (headless, with forced recalculation) and it returned 2026-08-07 — exactly the expected result. Every formula here is confirmed by actually executing it.