I am trying to get my RYG Status column to auto update based on a couple of factors - I can seem to get them all to align.
If RFP Due Date is Blank = Gray
If RFP Due Date is in the future = Green
If RFP Due Date is within 3 days of today = Yellow (this one is not working)
If RFP Due Date is today or in the past and the RFP Submitted is not checked = Red (this one is not working)
If RFP Submitted is checked = Green
Here is my current formula:
=IF(ISBLANK([RFP Due Date]@row), "Gray", IF([RFP Submitted]@row = 1, "Green", IF([RFP Due Date]@row <= TODAY(3), "Yellow", IF([RFP Due Date]@row <= TODAY(), "Red", IF([RFP Due Date]@row > TODAY(), "Green")))))