So i have this table shown above. K3 represents the date (manually entered) and L1 represents the lead time.
The conditions the result has to follow is shown below
- Days that should be included are Monday, Tuesday, Wednesday, Thursday, Saturday and Sunday. (Leaving out Friday as non working day)
- The Holidays should not be included
=holidays!A2:A9
the formula in L3 is
=WORKDAY.INTL(K4, L2, "0111101", holidays!A2:A9)
The list of holidays are shown in the table below.
As you can see, the result in L3 is 2nd March instead of 29th February. As this date does not fall on the holiday list and is not a Friday. Could someone help me with this, it would be much appreciated.


WORKDAY.INTL()is working as intended.In
WORKDAY.INTL()function1represents anon-workdayand0represents aworkday. That said,29th Feb'24isThursdayand you have made itnon-working day, hence in your formula: onlyMondayandSaturdayareworkdaysrest arenon workdays. ReadMSFTDocumentations here.What has been used:
What needs to be used:
Or, instead of using
"0000100"use16In context of your OP, the formula will be:
The following grid may help to understand as well: