I'm struggling with an IF statement and I'm hoping I might get some help.
I'm trying to calculate the due date using the date the request comes in and the timeframe to respond (# days). However, there is the ability to extend the request up to two times, for various reasons. The first formula below worked great for one extension (which is triggered using a checkbox). However, I'm not sure how to add to this formula to essentially say, if the second extension box is extended then the timeframe should be multiplied by 3.
WORKING FORMULA WITH ONE EXTENSION: =IFERROR(IF([Request Extended]@row = 0, [Date of Request]@row + [Timeframe to Respond]@row, [Date of Request]@row + [Timeframe to Respond]@row * 2), "")
Anyone have any ideas?
I tried this: =IF([Second Request Extended]@row = 1, [Date of Request]@row + [Timeframe to Respond]@row * 3, IF([Request Extended]@row = 0, [Date of Request]@row + [Timeframe to Respond]@row * 3, [Date of Request]@row + [Timeframe to Respond]@row)) but it isn't calculating right when neither extension box is checked.