Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Hello all, I've read this site without registering for some time, but now I have a question and am hoping someone can help me. I have a book that has thousands of names all in ALL CAPS, and I was wondering if there was a way to convert them all to Proper Case? I also seem to be having trouble converting them one at a time using the =Proper formula. Any thoughts. Much appreciated. RS -- rsantos17 ------------------------------------------------------------------------ rsantos17's Profile: http://www.excelforum.com/member.php...o&userid=34124 View this thread: http://www.excelforum.com/showthread...hreadid=538946 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could use a sub
Sub ChangeToProper() Dim cell as Range For Each cell In Activesheet.Usedrange cell.Value = APplication.Proper(cell.Value) Next cell End Sub -- HTH Bob Phillips (remove xxx from email address if mailing direct) "rsantos17" wrote in message ... Hello all, I've read this site without registering for some time, but now I have a question and am hoping someone can help me. I have a book that has thousands of names all in ALL CAPS, and I was wondering if there was a way to convert them all to Proper Case? I also seem to be having trouble converting them one at a time using the =Proper formula. Any thoughts. Much appreciated. RS -- rsantos17 ------------------------------------------------------------------------ rsantos17's Profile: http://www.excelforum.com/member.php...o&userid=34124 View this thread: http://www.excelforum.com/showthread...hreadid=538946 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA | Excel Worksheet Functions | |||
Loop for VBA code? | Excel Worksheet Functions | |||
EXCEL:NUMBER TO GREEK WORDS | Excel Worksheet Functions | |||
Is there a formula to spell out a number in excel? | Excel Worksheet Functions | |||
Convert Numeric into Text | Excel Worksheet Functions |