3 logical condition if statement

  • Thread starter Thread starter Mikehughes
  • Start date Start date
M

Mikehughes

Hi,

I.m sure this is simple if you know how but i'm confused.

I have a cell that I want to return 1 of 3 values, these bein
"Ongoing" "Complete" or lastly "Overdue"

Condition 1 Ongoing is returned if the date in A1 is less than the dat
in A2
Condition 2 Complete is returned if there is an "x" in A3 irrespectiv
of the date.
Condition 3 Overdue is returned if there is no "x" in A3 and the datei
A1 is greater than the date in A2


Thanks for any help you can offe
 
Here's one that will also check for TEXT values in A1 and A2......

=IF(OR(ISTEXT(A1),ISTEXT(A2)),"Improper
value",IF(A3="x","Complete",IF(A1<A2,"Ongoing",IF(A1>A2,"Overdue",""))))

Vaya con Dios,
Chuck, CABGx3
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top