PC Review


Reply
Thread Tools Rate Thread

Change Upper Case to Proper Case

 
 
Michael Koerner
Guest
Posts: n/a
 
      6th Mar 2008
Someone sent me a very large spreadsheet entirely in uppercase. Extremely hard to read. is there an easy way to change a range of cells from uppercase to proper case. Using Excel 2007

--

Regards
Michael Koerner


 
Reply With Quote
 
 
 
 
Mike H
Guest
Posts: n/a
 
      6th Mar 2008
If you really mean Proper then
=PROPER(A1)
will do it but that capitalises the first letter of every word which is an
improvement on all caps but not ideal.
Fir a solution try here
http://www.mvps.org/dmcritchie/excel/proper.htm#proper

Mike
"Michael Koerner" wrote:

> Someone sent me a very large spreadsheet entirely in uppercase. Extremely hard to read. is there an easy way to change a range of cells from uppercase to proper case. Using Excel 2007
>
> --
>
> Regards
> Michael Koerner
>
>

 
Reply With Quote
 
joshuafandango@dsl.pipex.com
Guest
Posts: n/a
 
      6th Mar 2008
Hi MK,

Change the range to suit:

Sub UpperToProper()
Dim Cell As Object
For Each Cell In Range("A1:E3")
Cell = Application.WorksheetFunction.Proper(Cell)
Next
End Sub

Cheers,
JF
 
Reply With Quote
 
Mike H
Guest
Posts: n/a
 
      6th Mar 2008
Only use this if you don't mind losing all your formula

"(E-Mail Removed)" wrote:

> Hi MK,
>
> Change the range to suit:
>
> Sub UpperToProper()
> Dim Cell As Object
> For Each Cell In Range("A1:E3")
> Cell = Application.WorksheetFunction.Proper(Cell)
> Next
> End Sub
>
> Cheers,
> JF
>

 
Reply With Quote
 
cht13er
Guest
Posts: n/a
 
      6th Mar 2008
You could try this, too .. not confident it works for 2007, it uses
VBA convertion instead of Excel's ...:

(After you've selected a bunch of cells)

dim strCellText as string
For Each Cell In Selection
strCellText = Cell
strCellText = StrConv(strCellText, vbProperCase)
Next Cell

Chris

On Mar 6, 8:22*am, joshuafanda...@dsl.pipex.com wrote:
> Hi MK,
>
> Change the range to suit:
>
> Sub UpperToProper()
> Dim Cell As Object
> * For Each Cell In Range("A1:E3")
> * Cell = Application.WorksheetFunction.Proper(Cell)
> * Next
> End Sub
>
> Cheers,
> JF


 
Reply With Quote
 
Michael Koerner
Guest
Posts: n/a
 
      6th Mar 2008
Thanks very much, will give it a shot.

--

Regards
Michael Koerner


"Mike H" <(E-Mail Removed)> wrote in message news:1A646A2F-D1FB-4DFB-B02A-(E-Mail Removed)...
If you really mean Proper then
=PROPER(A1)
will do it but that capitalises the first letter of every word which is an
improvement on all caps but not ideal.
Fir a solution try here
http://www.mvps.org/dmcritchie/excel/proper.htm#proper

Mike
"Michael Koerner" wrote:

> Someone sent me a very large spreadsheet entirely in uppercase. Extremely hard to read. is there an easy way to change a range of cells from uppercase to proper case. Using Excel 2007
>
> --
>
> Regards
> Michael Koerner
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I change from upper case to proper case in excel 2002 CT Man Microsoft Excel Misc 9 2nd Jun 2010 12:25 PM
excel'03 how to convert a column from upper case to proper case =?Utf-8?B?c2hhcmllIHBhbG1lcg==?= Microsoft Excel Misc 1 30th Jan 2006 11:50 PM
Excel: How do I change all upper case ss to proper case? =?Utf-8?B?TW9vc2llYg==?= Microsoft Excel Worksheet Functions 3 13th Jan 2006 12:45 AM
how to change upper case to proper case =?Utf-8?B?QWRpYg==?= Microsoft Access 3 11th Feb 2005 12:30 PM
Converting upper case to proper case in Excel angela Microsoft Excel Misc 1 13th Aug 2003 03:55 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:12 AM.