Hi Team - I have a bit of a doozy.. at least it is for me. I have a sheet that needs a status populated considering 2 different date columns.
If either "Expiry Date" or "Expiry Date 2" is in the past we need a "Red" status
If either "Expiry Date" or "Expiry Date 2" columns are within the next 30 days "Yellow" Status
If both "Expiry Date" or "Expiry Date 2" columns are further than 30 days away "green" Status. Additionally if the columns are blank then the status should be blank.
This is what I have so far but it is not populating a status and I am getting an #unparseable.
=IF([Expiry Date]@row = "", "", IF([Expiry Date 2]@row = "", IF(OR([Expiry Date 2]@row < TODAY(), [Expiry Date]@row < TODAY()), "Red", IF(OR([Expiry Date]@row >= TODAY(), [Expiry Date 2]@row >= TODAY(), ([Expiry Date]@row < TODAY(+30), [Expiry Date 2]@row < TODAY(+30))), "Yellow", "Green"))))
Thank you in advance for your assistance. :)