Change entire column from upper to proper

B

Bob

I know how to do a single entry in a column, but is it
possible to do an entire column at one time?
 
P

Peo Sjoblom

Put the value in A1, press ctrl + shift & down arrow, press ctrl + d
to fill row do the same but instead of down arrow use right arrow and ctrl +
r
 
C

Chip Pearson

Bob,

In a blank column next to your data, enter =PROPER(A1) where A1 is the first
cell of your data, and copy this down as far as you need to go. Then, copy
these cells and do a Paste Special / Values over the original data. Finally,
delete the column with the formulas.
 
D

Dennis

Hers's a macro..

Sub ToProper()
Dim c As Range
Application.ScreenUpdating = False
For Each c In ActiveSheet.UsedRange
If c.HasFormula = False Then
c.Value = StrConv(c.Value, vbProperCase)
End If
Next c
Application.ScreenUpdating = True
End Sub


Dennis
========
 

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