changing case in excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I change the case of a name in Excel? My example is as follows

If I want to change "Hughes,Gavin" to "HUGHES,Gavin" is there a function I
can use?

I know there's one to change the whole name but what about just the surname?

I have over 700 names to change so would like a quick option.
 
If the names are always separated by a comma then try:

=UPPER(LEFT(J2,FIND(",",J2)))&PROPER(RIGHT(J2,LEN(J2)-FIND(",",J2)))

Adjust for the correct cell and copy down then if necessary copy and Paste
Special > values over the top of the original data.

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
(e-mail address removed) with @tiscali.co.uk
 
A little shorter version.........

=UPPER(LEFT(A1,FIND(",",A1)))&MID(A1,FIND(",",A1)+1,99)

Vaya con Dios,
Chuck, CABGx3
 

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

Similar Threads

Merging Data 8
Typing an Address List 3
Title Case in Excel 3
Change Case 1
simple question about excel 5
Change Text 3
Excel Comparing two columns 1
change to upper/lower case 1

Back
Top