Filtering on upper/lowercase letters

C

Chris Benton

In Excel 2007, I have several records that contain both uppercase and
lowercase letters in two columns. I need to create a filter so that ONLY the
records containing lowercase letters are displayed. I don't need to convert
the case, I only need to see which records contain lowercase. Haven't been
able to come up with anything on my own. Thoughts?
 
G

Glenn

Chris said:
In Excel 2007, I have several records that contain both uppercase and
lowercase letters in two columns. I need to create a filter so that ONLY the
records containing lowercase letters are displayed. I don't need to convert
the case, I only need to see which records contain lowercase. Haven't been
able to come up with anything on my own. Thoughts?

Add a column and fill with the formula:

=IF(A1=UPPER(A1),"","LC")

Substitute the correct cell reference, then filter based upon that column.
 
P

Paul

Guys,

You need to test for case-sensitivity, by using the EXACT function
=IF(EXACT(A1,UPPER(A1)),"","LC")

Paul
 

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