Find Upper Case Text

J

John1950

I have searched the excel tips but can't find what I need, so maybe
someone on the Forum can help me. I have a sheet with roughly 12,000
lines, in 2 of the columns I have text but the problem is, some of it
is Proper Type and some of it is Upper Case. I need to be able to
*identify* (not change) the Uppercase Text but remembering that the
Propr Type has Cap at the begining. Is this possible to do?:eek: :eek:
 
B

Bob Phillips

For Each cel In ACtivesheet.UsedRange
If cell.value = UCase(cel.Value) Then
Msgbox cel.Address & " is Upper Case"
End If
Next cel

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
D

Don Guillett

Try

Sub finduppercase()
For Each c In Selection
If Len(c) > 0 And c = UCase(c) Then MsgBox c.Address
Next
End Sub
 

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

Similar Threads

Upper case 6
CHANGE LOWER CASE TO UPPER CASE? 1
UPPER CASE 1
Changing from upper case to lower case 12
Uppercase 6
upper case lower case 0
Auto Upper Case 1
change typed text to upper case 2

Top