I currently have the following formula in column AV
=IF(AU2="D/D","",IF(AU2>EDATE(B2,5),"DELAY",""))
AU column contains either "D/D" or current estimated delivery date, B2 contains the order date. The above shows "DELAY" if an order has taken longer than 5 month and nothing if its already been delivered.
What I want to do is add to the above IF statement that also says "DELAY" if the the current status in column AR says "ORDER RECEIVED" and its status date in column AT is more than 3 months old from today's date. I think I need something like the following
that works and not give me #value!
=IF(AR324="ORDER RECEIVED",IF(EDATE(AT324,3>TODAY()),"DELAY",""),IF(AU324="D/D","",IF(AU324>EDATE(B324,5),"DELAY","")))
Any help would be appreciated