Converting ALL CAPS to name formati

Lubinski

New Member
Joined
Sep 17, 2002
Messages
16
How can you convert a simple Excel spreadsheet listing people, addresses and telephone numbers originally types in ALL CAPS? It would be more useful and attractive to have it follow standard name format Firstname Lastname. Thanks

Rick Lubinski
Silver Lake, Ohio
9/18/02 @ 18:16

rick@think-energy.net
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Try using the worksheet function 'proper'

=proper("MY NAME") gives My Name as a result
 
Upvote 0
Or with a marco try
Sub Proper_Case()
Application.ScreenUpdating = False
Application.EnableEvents = False
Dim cl As Range
'for whole sheet use this, will be slow if a lot is on the sheet
For Each cl In ActiveSheet.[A1].SpecialCells(xlCellTypeConstants, 2)

'for a range use something like one below
'For Each cl In ActiveSheet.[A1:B50,D1:D50,F4].SpecialCells(xlCellTypeConstants, 2)
'For Each cl In ActiveSheet.[A4,B4,C4].SpecialCells(xlCellTypeConstants, 2)

cl = Application.Proper(cl)
Next cl
Application.EnableEvents = True
Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,817
Messages
6,121,720
Members
449,050
Latest member
MiguekHeka

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top