I’m trying to use the workday.intl function to exclude Sundays and holidays and INCLUDE Saturdays in the argument but return ONLY workdays, no Saturdays, sundays, or holidays. The formula I have now is simple enough but since I include Saturdays in the argument, it is also returning Saturdays in the due date. I need to tell the formula to skip To the next working day when returning the date. So from the start date, I need to count 4 days, including Saturday in the count, and return the next business day, NOT including Saturdays (or sundays or holidays). COL A is the start date and COL B is the due date, and H2:H12 are holidays. So for example I have:

=WORKDAY.INTL(A24,4,11,$H$2:H$11)

Where A24=1/26. So B24 is returning 1/30 but since 1/30 is a Saturday I need it to return 2/1 which is the following Monday. Any help is appreciated!!