I have the following formula that works. When I try to add some IF THEN conditions I can't get formula to work.
=IFERROR(WORKDAY([Due Date]@row, -2, {Holidays Range 3}), "pending")
I am starting with a Due Date I want to calculate a Final File Release Date 2 days prior to Due Date, but if the days until due date column is <3 days I want the formula to bring back the actual Due Date. I also want to ensure the due dates are WORKDAY only and eliminate holidays as well, I don't want a Final due date to fall on the weekend or a holiday.
Here are my attempts neither of these are working.
First formula is to try to get it to bring back the due date if days until due are <3
=IF([Days Until Due Date]@row < 3, WORKDAY([Due Date]@row) {Holidays Range 3})) I get error unparseable
the formula below was an attempt to combine the above scenario with the second part of if the days until due are then subtract 2 days from the due date
=IF([Days Until Due Date]@row < 3, [Due Date]@row, {Holidays Range 3}, IF(OR([Days Until Due Date]@row > 3, [Due Date]@row, -2, {Holidays Range 3}))) I get error incorrect argument set