Hello,
I need a formula to return a value of 30, 60, or 90 if the due date is within 30,60,90 days of a due date. I am going to use this column to group a report to show each bucket of items due in the time frame.
I can get the formula to return the correct value if the date is within 30 days, but am not able to nest IF statements to return if the date is 60 days out, and 90 days out.
Here is the formula I used for the 30 days:
=IF(AND([End Date]@row <= TODAY(30), [End Date]@row >= TODAY()), "30", 0)
How would I nest additional criteria for 60 and 90 days?