I'm sure this is covered elsewhere but I guess I wasn't sure about which keywords to search.
I've got a spreadsheet with different tasks in one column.
In the next column I have the latest update from a dropdown list ("awaiting response", "awaiting approval", "on hold", "complete", and a few others).
row 1 | TASK 01 | ON HOLD
row 2 | TASK 02 | AWAITING RESPONSE
row 3 | TASK 03 | ON HOLD
row 4 | TASK 02 | AWAITING APPROVAL
row 5 | TASK 01 | AWAITING APPROVAL
row 6 | TASK 03 | AWAITING APPROVAL
row 7 | TASK 02 | COMPLETE
I have conditional formatting in place so that the "TASK __" cells are red when the status in column 2 states anything but complete. In this case, the task cell in row 7 would no longer be red. However, the task 02 cells in rows 2 and 4 remain red.
How can I use conditional formatting to make ALL of the "TASK 02" cells in column 1 change from red to no color fill when I mark TASK 02 as completed in row 7?
=COUNTIFS(A:A,A1,B:B,"COMPLETE")>0
– Scott Craner