Filtering on upper/lowercase letters

  • Thread starter Thread starter Chris Benton
  • Start date Start date
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?
 
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.
 
Guys,

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

Paul
 
Back
Top