If Statement

  • Thread starter Thread starter RWilson130
  • Start date Start date
R

RWilson130

I have written a formula IF(M15="L","X","") but I want to add to the formula
IF(T15="BA","")

Can anyone help me with this?

Thanks!
 
I'm going to assume that the 2nd formula was supposed to be...
IF(T15="BA","X","")

That would make your 'combined' formula...
IF(or(M15="L", T15="BA"),"X","")

Hope this helps.
Gary Brown
 
No I am trying to do two things here....first i want to know if in cell M15 =
L then I need an X, if it doesn't = L then leave it blank, but if T15= BA I
need it to come back a blank no matter if M15 = L or not.

Thanks for your help with this!
 
Thank You David!!!

David Biddulph said:
=IF(T15="BA","",IF(M15="L","X",""))
or
=IF(OR(T15="BA",M15<>"L"),"","X")
or
=IF(AND(T15<>"BA",M15="L"),"X","")
 

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

Similar Threads

sumproduct 4
Formula Check Please! 3
Sumproductif 1
Lookup 6
Formula Count Help 3
Multiplying Empty Cells 6
Hiding a dropdown menu 2
Sumproduct Question 1

Back
Top