Formula to identify lower case vs upper case

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!
 
G

Guest

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")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top