Hi,
I'm trying to do the below:
- When a date range - TODAY () is less than 30 it shows 'Current,'
- When a date range - TODAY () is less than 60 it shows '30'
- When a date range - TODAY () is less than 90 it shows '60'
- When a date range - TODAY () is less than 90 it shows '90'
I can get it to say current, and it works well, but I can't get any of the others, and if I try to insert an AND function it comes up as invalid.
Formula:
=IF([Due Date]3 - TODAY() <= 30, "CURRENT", IF([Due Date]3 - TODAY() <= 60, "30", IF([Due Date]3 <= 90, "60", IF([Due Date]3 - TODAY() <= 90 - 120, "90"))))