- What's the difference between WORKDAY and WORKDAY.INTL?
- WORKDAY only handles the fixed Saturday-Sunday weekend, while WORKDAY.INTL supports any weekend configuration via the weekend parameter. WORKDAY.INTL is essential for maintenance schedules in international locations (e.g., Friday-Saturday weekends in the Middle East, or Thursday-Friday in some regions).
- Can WORKDAY.INTL calculate dates in the past?
- Yes. Use a negative value for days to count backwards. For example, =WORKDAY.INTL(B2, -5) returns the working day 5 working days before B2. This is useful for backdating maintenance records or finding the last business day before a deadline.
- Why does my result show a number like 45312 instead of a date?
- Dates are stored as serial numbers internally; 45312 represents a specific date (January 15, 2024, in this case). Format the cell as a Date (right-click > Format Cells > Date) to display it as a readable date like '2024-01-15'.
- How do I reuse the same holiday list across many formulas?
- Define your holidays in a fixed range, then create a named range (e.g., 'CompanyHolidays'). Reference it in each formula: =WORKDAY.INTL(B2, 30, 1, CompanyHolidays). When holidays change, update the range once and all formulas automatically recalculate.