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!
IF(T15="BA","")
Can anyone help me with this?
Thanks!
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","")