Formula to identify lower case vs upper case

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

(A2)=IF(ISNUMBER(SEARCH("n",W2)),"Y")

THIS WILL PUT A "Y" IN CELL A2 IF THERE IN AN "n" (upper or lower case) in
cell W2.
I need it to put a Y in cell AS only if there is a lower case n in cell W2.
This is Excel 2003

Thanks for the help!
 
SEARCH and SEARCHB are not case sensitive. If you want to do a case sensitive
search, you can use FIND and FINDB.

=IF(ISNUMBER(FIND("n",W2)),"Y")
 
Back
Top