Funtion multi conditions

  • Thread starter Thread starter Aline
  • Start date Start date
A

Aline

How could I put up a IF function with multi-conditions?

Y for "Meets", "Mostly Meet" and "Exceeds"
N for "Not Meet" and "unable to assess"
No Info for no content in cell

****************

Meets Y
Mostly Meet Y
Exceeds Y
No Info
Not Meet N
Unable to assess N
Meets Y
No Info
Not Meet N

****************

Thanks,
Aline
 
You could use an AND function along with IF.

=IF(AND(B1="Y",B2="Y",B3="Y"),"True","False")

Not sure what specifics you want.

Regards,
Paul
 
Hi,

How to write function on the column B according the information on the
column A?

On the column B:
it shows Y if "Meets" or "Mostly Meet" or "Exceeds" on the column A
it shows N if "Not Meet" or "unable to assess" on the column A
it shows No Info if the cell is empty on the column A

column A column B
Meets Y
Mostly Meet Y
Exceeds Y
No Info
Not Meet N
Unable to assess N
Meets Y
No Info
Not Meet N



Thanks,
Aline
 
Ok.

=IF(OR(A1={"Meets","Mostly Meet","Exceeds"}),"Y",IF(OR(A1={"Not
Meet","unable to assess"}),"N","No Info"))

HTH,
Paul

--
 
Thank you very much, Paul.

It works!
--
Aline


PCLIVE said:
Ok.

=IF(OR(A1={"Meets","Mostly Meet","Exceeds"}),"Y",IF(OR(A1={"Not
Meet","unable to assess"}),"N","No Info"))

HTH,
Paul
 

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