Hello Team. I am setting up a sheet that would help track and act on over 3K documents based on their end dates. The two column I would like to work together are "end dates" and "expiration status". The "expiration status" column is a dropdown with the following choices:
"Current"
"up to 1 year expiry"
"6 mos. expiry"
"90 days expiry"
"60 days expiry"
"30 day expiry"
"Expires this week!"
"Expires TODAY"
"Expired less than 6 mos."
"Exprired this year"
"Exprired 1-2 years ago"
"Expired 2-5 years ago"
"Expired 5+ years ago"
I updated the choices in the dropdown since, but here the formula I tried then:
=IF([End date]@row >= TODAY(+365), "1 year until expiration", IF([End date]@row >= TODAY(+182), "-6 months until expiration", IF([End date]@row >= TODAY(+90), "-90 days until expiration", IF([End date]@row >= TODAY(+60), "-60 days until expiration", IF([End date]@row >= TODAY(+30), "-30 days until expiration", IF([End date]@row <= TODAY(-365), "Expired +1 year ago", IF([End date]@row <= TODAY(-730.5), "Expired 2+ years ago", IF([End date]@row <= TODAY(-1825), "Expired +5 years ago"))))))))
The only formulas that seem to be workin were:"-90n days until exp." and "Exp. +1 year ago" (because of course +1 year includes +2 years and +5 years...). I also had a lot errors that showed as #INVALID DATA TYPE
How should I correct this formula?
Thank you!