Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15
Default Employee Names in Capital Letters

I got this file that has employee names. However, the names are all in
capital letters. Is there a way to break the name in the appropriate case?
For example, the name is JOE SMITH. I would like the name to be displayed
as Joe Smith. Thanks.




  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Employee Names in Capital Letters

=LEFT(A1,1)&LOWER(MID(A1,2,FIND(" ",A1)-1))&MID(A1,FIND("
",A1)+1,1)&LOWER(RIGHT(A1,LEN(A1)-FIND(" ",A1)-1))

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Diane Walker" wrote in message
...
I got this file that has employee names. However, the names are all in
capital letters. Is there a way to break the name in the appropriate

case?
For example, the name is JOE SMITH. I would like the name to be displayed
as Joe Smith. Thanks.






  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 492
Default Employee Names in Capital Letters

With JOE SMITH in A1 try
=PROPER(A1), drag down to the end of the list and Copy Paste Special
Values to lose the formulas,
Regards,
Alan.
"Diane Walker" wrote in message
...
I got this file that has employee names. However, the names are all in
capital letters. Is there a way to break the name in the appropriate case?
For example, the name is JOE SMITH. I would like the name to be displayed
as Joe Smith. Thanks.






  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 430
Default Employee Names in Capital Letters

You could create a temporary "helper Column" to CONVERT
The Names; Afterwards do a Copy - Paste-Special-Values
Of the formula (to convert back to a Value) -- then replace
Your original ALLCAPS data.

A1 = JOE SMITH
B1 = =Proper(A1) Should display Joe Smith

HTH

"Diane Walker" wrote in message
:

I got this file that has employee names. However, the names are all in
capital letters. Is there a way to break the name in the appropriate case?
For example, the name is JOE SMITH. I would like the name to be displayed
as Joe Smith. Thanks.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Employee Names in Capital Letters

LOL, forgot PROPER

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Alan" wrote in message
...
With JOE SMITH in A1 try
=PROPER(A1), drag down to the end of the list and Copy Paste Special
Values to lose the formulas,
Regards,
Alan.
"Diane Walker" wrote in message
...
I got this file that has employee names. However, the names are all in
capital letters. Is there a way to break the name in the appropriate

case?
For example, the name is JOE SMITH. I would like the name to be

displayed
as Joe Smith. Thanks.










  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 903
Default Employee Names in Capital Letters

Hi Diane,
(Reusing reply just used in another thread)

You need a macro to do what you want. A function can only return
a value, so if you don't want the little dance routine to convert formulas
to values and remove the original column, you would need to use a
macro.

With a macro all you need to do is select the cells to be converted.
If the macro is properly written it will restrict itself to the used range
(one way is with SpecialCells), then you can select entire columns
or the entire worksheet. If it is not properly written converting a
single column could take 3 minutes (65536 cells on 600mHz with 128MB RAM).
You should hardly notice converting 4000 cells in a column.

Proper, and other Text changes -- Use of SpecialCells
http://www.mvps.org/dmcritchie/excel/proper.htm#proper
---
HTH,
David McRitchie, Microsoft MVP - Excel
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"Diane Walker" wrote ...
I got [have] this file that has employee names. However, the names are all in
capital letters. Is there a way to break the name in the appropriate case?
For example, the name is JOE SMITH. I would like the name to be displayed
as Joe Smith. Thanks.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Replacing capital letters jezzica85 Excel Discussion (Misc queries) 5 February 23rd 10 06:49 AM
Creating Names Baffling Problem Timmy Mac1 Excel Discussion (Misc queries) 4 August 22nd 06 09:00 AM
capital letters to lowercase Xhawk57 Excel Discussion (Misc queries) 5 March 9th 06 03:37 PM
Capital Letters Gaute Excel Worksheet Functions 4 March 9th 05 09:55 AM
Auto change font to 'capital letters' Anthony Excel Worksheet Functions 3 February 12th 05 03:10 PM


All times are GMT +1. The time now is 11:21 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"