The result will be "50"What if B1 is GREATER than 0 and C1 = "B"?
=IF(AND(C1<>"B",B1<0),50,IF(AND(C1="B",B1<0),40,"result if neither is true"))
It worked. thanks to all of you.Hi,
=IF(B1<0,IF(C1=“B”,40,50),IF(C1=“B”,50,40))
Did this on my phone, do not copy and paste, re-type the formula in Excel.