Title Case in Excel

A

Annie

Hi

I have columns of data that are all upper case or lower case that were
imported like this from another program. I know there is an UPPER and LOWER
function in Excel but is there something that I can use to format the data
into Title Case so that I can use it in a mail merge situation - names,
addresses etc.. It is too time consuming for me to manually change the
information - it's just too vast!!

Many thanks
 
G

Gary''s Student

With data in column A, in B1 enter:

=Proper(A1) and copy down.

To replace the data in place, select the cells and run:

Sub properize()
For Each r In Selection
r.Value = Application.WorksheetFunction.Proper(r.Value)
Next
End Sub
 
B

BT

Hi Annie

Further to the previous responses, much easier for you to Copy the content
of the helper cells and use Edit / Paste Special / Values in the original
column, then delete the helper column.
 

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