Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do we Change Case to UPPER, Titel, Sentence, lower and tOGGLE case for
text within Excel? Seems a simple one that MS would have taken care of by now. Do we still have to take the data to MS Word and then change case (Shift+F3) and then bring it back? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The formulas are
=UPPER(A1) =LOWER(A1) =PROPER(A1) -- If this post helps click Yes --------------- Jacob Skaria "Excel Phobic" wrote: How do we Change Case to UPPER, Titel, Sentence, lower and tOGGLE case for text within Excel? Seems a simple one that MS would have taken care of by now. Do we still have to take the data to MS Word and then change case (Shift+F3) and then bring it back? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can use the functions upper, lower or proper in helper cells.
Or use macros to make the changes in place. Sub Upper() Dim Cell As Range Application.ScreenUpdating = False For Each Cell In Selection Cell.Formula = UCase(Cell.Formula) Next Application.ScreenUpdating = True End Sub Sub Lower() Dim Cell As Range Application.ScreenUpdating = False For Each Cell In Selection Cell.Formula = LCase(Cell.Formula) Next Application.ScreenUpdating = True End Sub Sub Proper() Dim Cell As Range Application.ScreenUpdating = False For Each Cell In Selection Cell.Formula = Application.Proper(Cell.Formula) Next Application.ScreenUpdating = True End Sub Sub Sentence() For Each Cell In Selection.Cells S = Cell.Value Start = True For I = 1 To Len(S) ch = Mid(S, I, 1) Select Case ch Case "." Start = True Case "?" Start = True Case "a" To "z" If Start Then ch = UCase(ch): Start = False Case "A" To "Z" If Start Then Start = False Else ch = LCase(ch) End Select Mid(S, I, 1) = ch Next Gord Dibben MS Excel MVP Cell.Value = S Next End Sub On Wed, 17 Jun 2009 23:26:01 -0700, Excel Phobic <Excel wrote: How do we Change Case to UPPER, Titel, Sentence, lower and tOGGLE case for text within Excel? Seems a simple one that MS would have taken care of by now. Do we still have to take the data to MS Word and then change case (Shift+F3) and then bring it back? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I change from upper case to proper case in excel 2002 | Excel Discussion (Misc queries) | |||
How to change mixed case to upper case in Excel for all cells | Excel Discussion (Misc queries) | |||
Excel: How do I change all upper case ss to proper case? | Excel Worksheet Functions | |||
Change the text from lower case to upper case in an Excel work boo | Excel Discussion (Misc queries) | |||
How do I change a column in Excel from upper case to lower case? | Excel Worksheet Functions |