Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a spreadsheet w/millions (ok, I exaggerate) of lower case characters
that I need to change to upper case. Any way to pull this off? tks, steve |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=UPPER(A1)
"sjs" wrote: I have a spreadsheet w/millions (ok, I exaggerate) of lower case characters that I need to change to upper case. Any way to pull this off? tks, steve |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
sjs, have a look here for a way to do it
http://www.mvps.org/dmcritchie/excel/proper.htm#upper -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "sjs" wrote in message ... I have a spreadsheet w/millions (ok, I exaggerate) of lower case characters that I need to change to upper case. Any way to pull this off? tks, steve |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Works to perfection, thanks!
"Mike" wrote: =UPPER(A1) "sjs" wrote: I have a spreadsheet w/millions (ok, I exaggerate) of lower case characters that I need to change to upper case. Any way to pull this off? tks, steve |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use this macro:
Sub Change_Case() Dim ocell As Range Dim Ans As String Ans = Application.InputBox("Type in Letter" & vbCr & _ "(L)owercase, (U)ppercase, (S)entence, (T)itles ") If Ans = "" Then Exit Sub For Each ocell In Selection.SpecialCells(xlCellTypeConstants, 2) Select Case UCase(Ans) Case "L": ocell = LCase(ocell.Text) Case "U": ocell = UCase(ocell.Text) Case "S": ocell = UCase(Left(ocell.Text, 1)) & _ LCase(Right(ocell.Text, Len(ocell.Text) - 1)) Case "T": ocell = Application.WorksheetFunction.Proper(ocell.Text) End Select Next End Sub "sjs" wrote: I have a spreadsheet w/millions (ok, I exaggerate) of lower case characters that I need to change to upper case. Any way to pull this off? tks, steve |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change from mixed caps and upper lower to all upper lower case | Excel Worksheet Functions | |||
change lower-case to upper-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 | |||
How do I change existing text from lower case to upper case | Excel Discussion (Misc queries) |