Hi, I'd like to make a formula for the following purpose:
We have daily quotas that need to be reached, however it changes depending on the day. Monday through Thursday the goal is 3, and Friday the goal is 1. I'd like an IF formula to do a MAX operation depending on the day. This is so that every day we can see how many more people do we need to reach to meet the daily goal.
I already have a helper column with WEEKDAY to get the day of the week number.
I have an idea of what could work for this, but I get stuck at how to have multiple days (Monday through Thursday) in the IF formula.
IF WEEKDAY is Friday (day "6") then = MAX(0,3 - [Today's daily total]@row) else IF WEEKDAY is Monday through Thursday (days "2, 3, 4 or 5") then MAX(0,1 - [Today's daily total]@row).
I use MAX so that the number doesn't turn negative and instead remains at 0 if the goal is met.
Thanks