Combining Two, IF AND Statements With OR Trouble
How do you write formula for
If A1 ends with 1 and B1 ends with 3 , OR vice versa, If B1 ends with 1 and A1 ends with 3, if true, “WON”, if false “Blank”
This Formula works for one scenario
=IF(AND(RIGHT(A1,1)="1",RIGHT(B1,1)="3"), "WON","")
I want to ADD this to that first formula
=IF(AND(RIGHT(B1,1)=“1”,RIGHT(A1,1)=“3”), "WON","")
In other words
=IF(AND(RIGHT(A1,1)="1",RIGHT(B1,1)="3"), "WON","") Or (vice versa)
=IF(AND(RIGHT(B1,1)=“1”,RIGHT(A1,1)=“3”), "WON","")
This formula here works in excel, but not numbers
=IF(OR(RIGHT(A1,1)="1",RIGHT(A1,1)="3")*OR(RIGHT(B1,1)="1",RIGHT(B1,1)="3"),"WON","")
Thanks