Hi I am looking to enhance the formula below.
I Have a "Due Date" in Cell B5 & a "Completed" Date in Cell C5. The Formula is in D5. The Results will allow conditional formatting for a RAG status.
RAG > 1=RED ,2=Green, 3=Amber
=IF(AND(C5="",B5<=TODAY()),1,IF(C5>B5,1,IF(C5<B5,2,3)))
I'd like to...