View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Hani Hani is offline
external usenet poster
 
Posts: 2
Default IF Statement with text

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

Above you will find the answer to your question.

Regards,

"JustinD" wrote:

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?