Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel - Capitals 2

Status
Not open for further replies.

zacksack

Technical User
Oct 8, 2001
107
CA
I have a spreadsheet full of contacts (about 800) and most are all capitals. What I mean is the name looks like this BOB SMITH and I want it to look like this Bob Smith. The question I have is this, is there a quick way to make this change to all 800 entries? or do I have to go back in and manually correct each and every one of them. :-(

Thanks so much

Brad
 
See this for complete instructions:

Now, change the one line in the code from this:

UCRng.Value = UCase(UCRng.Value)

to this:

UCRng.Value = StrConv(UCRng.Value, vbProperCase)

Of course, you'll have to fix the McCoys and such manually; usually done very easy with a search..

Anne Troy
Supercharge your Office Applications:
 
Or without VBA use formulae eg. if BOB SMITH is in A1

=PROPER(A1)

Tiglet [reading]

Living on Earth is expensive, but it does include a free trip around the sun every year
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top