Capitalization

A

AMezera

Is there away to change a fully capitalized word into a properly formatted
word?
Example: EXCEL changed to Excel.
 
A

AMezera

Is there a way to do it without a formula?

Luke M said:
Ironically, the function your looking for is PROPER
=PROPER(EXCEL)
returns "Excel"
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*
 
L

Luke M

No. But may I ask why you're avoiding a formula? You could create the
formula(s), then do a Copy-Paste Special-Values only if you really want
static values.
 
G

Gord Dibben

You could do it in place with a macro and not bother with formulas or helper
cells.

Sub Proper()
Dim Cell As Range
Application.ScreenUpdating = False
For Each Cell In Selection
Cell.Formula = Application.Proper(Cell.Formula)
Next
Application.ScreenUpdating = True
End Sub


Gord Dibben MS Excel MVP
 

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