Subtract business days from a date changing the days of the weekend

You can subtract business days from an existing date by using the WORKDAY.INTL function.
This function will default to excluding Saturdays and Sundays.


 A
1=TODAY() = Tuesday 06 June 2023
2=NOW() = Tuesday 06 June 2023 16:32:06
3=WORKDAY.INTL(A1,-9,1) = 24 Wednesday May 2023
4=WORKDAY.INTL(A1,-9,7) = 24 Wednesday May 2023
5=WORKDAY.INTL(A1,-9,14) = 27 Saturday May 2023

1 - Displays the current date. Custom format "dddd dd mmmm yyyy".
2 - Displays the current date and time. Custom format "dddd dd mmmm yyyy hh:mm:ss".
3 - Displays 9 business days before the date in cell "A1" (excluding Saturday and Sunday with an explicit argument).
4 - Displays 9 business days before the date in cell "A1" (excluding Friday and Saturday).
5 - Displays 9 business days before the date in cell "A1" (excluding just Wednesday).


Built-in Functions

TODAY - The date serial number representing today's date.
NOW - The date serial number of the current system date and time.
WORKDAY.INTL - The date serial number that is a given number of working days before or after a date.


Related Formulas

Add business days to a date changing the days of the weekend
Subtract business days from a date
Subtract business days from a date excluding public holidays
Number of business days between 2 dates


© 2023 Better Solutions Limited. All Rights Reserved. © 2023 Better Solutions Limited Top