Thanks. That was exactly what I needed.
One more thing I need though, I forgot to add that K may have N/A entered
sometimes. This would result in a "Closed/NA" or "Completed/NA" in B2.
Can you help one more time?
Try this out in B2 (all one formula, as before):
=IF(V2="","Open",
IF(AND(AD2<>"",AE2<>""),"Cancelled",
IF(AND(AC2<>"",AE2<>""),"Closed/BER",
IF(AE2<>"",
IF(K2="N/A","Closed/NA",
IF(J2>K2,"Closed/No","Closed/Yes")),
IF(K2="N/A","Completed/NA",
IF(J2>K2,"Completed/No","Completed/Yes"))))))
It might be better to insert a new column C (assuming you are using C
at the moment), then you can split this formula so that the words
"Open", "Cancelled", "Closed" and "Completed" appear in column B as
appropriate and the words "BER", "NA", "No" and "Yes" appear in column
C (right aligned).
Pete
roy.okinawa - 20 Dec 2005 21:50 GMT
Thanks again and for the recommendation.
> Try this out in B2 (all one formula, as before):
>
[quoted text clipped - 14 lines]
>
> Pete