I think I need an AND statement but not sure exactly how to do it.
I have a R/Y/G column that I need to have check 2 other columns to determine if it should be Red or Green. I would like to be notified if an invoice has not been paid. Current columns: 1) date of when the invoice is sent to Finance; 2) take col 1 and add 21 days to give it time to get through the system; 3) final column to note Red or Green if the invoice is paid or not based on the date in #s1 and 2.
If the Invoice Paid column is checked then return Green in column 3; if the Invoice Paid column is NOT checked and the Check Date column is over 21 days based on TODAY then it turns Red.
Here are my original formulas:
=IF([Invoice Paid Check]@row = 1, "Green")
=IF(TODAY() > [Invoice Paid Date Helper1]@row, "Red")
Pretty sure that to combine these I need to restate that if the Invoice Paid Check column is "" AND TODAY() > [Invoice Paid Date Helper1]@row, "Red". I just don't know how to do that.
Is this close??: = IF([Invoice Paid Check]@row = 1, "Green", IF(AND([Invoice Paid Check]@row = “”, TODAY() > [Invoice Paid Date Helper1]@row, "Red")))
I'm sure I'm making this way more complicated so if there is an easier way than all my extra columns I wouldn't mind hearing that otherwise, figuring out how to combine the formula into one cell for the correct Red or Green dot would be lovely!