IF Statement with text

J

JustinD

I am trying to create an if statment where if the last two characters in a
cell are A1 or A2, "Y" appears in another cell. I've tried a couple of
formulas and nothing seems to be working.

=IF(OR($I5="*A1",$I5="*A2"),"Y"," ")

=IF($I5="*A1", IF($I5="*A2), "Y", " ")

Any suggestions?
 
P

Pete_UK

Try this instead:

=IF(OR(RIGHT($I5,2)="A1",RIGHT($I5,2)="A2"),"Y","")

Hope this helps.

Pete
 
H

Hani

=IF(OR(RIGHT(A1,2)="A1",RIGHT(A1,2)="A2"),"Y","")

Above you will find the answer to your question.

Regards,
 
Top