Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is it possible to change an entire column, so that any upper case letters
are changed to lower case? Or do they all need to be changed individually? Thanks for any replies. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You can put this formula in a helper column:
=LOWER(A1) and then copy down as far as required. Fix the values by highlighting the cells with the formula in and <copy, then Edit | Paste Special | Values (check) | OK then <Esc. Then you can copy the values to overwrite the originals in column A, then delete the helper column. Hope this helps. Pete On May 5, 12:44*pm, "Fergal" wrote: Is it possible to change an entire column, so that any upper case letters are changed to lower case? Or do they all need to be changed individually? Thanks for any replies. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Fergal,
Right click your sheet tab, view code and paste the code below in. Change MyColumn to the desired column and then run the code. Sub Marine() Dim MyRange Dim MyColumn As String MyColumn = "A" 'Change to suit lastrow = Cells(Cells.Rows.Count, MyColumn).End(xlUp).Row Set MyRange = Range(MyColumn & "1:" & MyColumn & lastrow) For Each c In MyRange If Not c.HasFormula Then c.Value = UCase(c.Value) End If Next End Sub Mike "Fergal" wrote: Is it possible to change an entire column, so that any upper case letters are changed to lower case? Or do they all need to be changed individually? Thanks for any replies. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
OOPS,
wrong way around you wanted lower case. Sub Marine() Dim MyRange Dim MyColumn As String MyColumn = "A" 'Change to suit lastrow = Cells(Cells.Rows.Count, MyColumn).End(xlUp).Row Set MyRange = Range(MyColumn & "1:" & MyColumn & lastrow) For Each c In MyRange If Not c.HasFormula Then c.Value = LCase(c.Value) End If Next End Sub Mike "Mike H" wrote: Fergal, Right click your sheet tab, view code and paste the code below in. Change MyColumn to the desired column and then run the code. Sub Marine() Dim MyRange Dim MyColumn As String MyColumn = "A" 'Change to suit lastrow = Cells(Cells.Rows.Count, MyColumn).End(xlUp).Row Set MyRange = Range(MyColumn & "1:" & MyColumn & lastrow) For Each c In MyRange If Not c.HasFormula Then c.Value = UCase(c.Value) End If Next End Sub Mike "Fergal" wrote: Is it possible to change an entire column, so that any upper case letters are changed to lower case? Or do they all need to be changed individually? Thanks for any replies. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Use the function =LOWER(A1) which will convert the text in A1 to lower case
-- If this post helps click Yes --------------- Jacob Skaria "Fergal" wrote: Is it possible to change an entire column, so that any upper case letters are changed to lower case? Or do they all need to be changed individually? Thanks for any replies. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
assuing the your uppercase data are in col A
highlight B2 downward to where your data end go to the formula bar type =lower(A2) (if you want all letters to be lowercase), otherwise type =proper(A2) (if you want the first letter to be a captial letter) Ctrl and Enter -- Hope this is helpful Pls click the Yes button below if this post provide answer you have asked Thank You cheers, francis Am not a greek but an ordinary user trying to assist another "Fergal" wrote: Is it possible to change an entire column, so that any upper case letters are changed to lower case? Or do they all need to be changed individually? Thanks for any replies. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Changing multiple cell text from lower case to upper case | Excel Discussion (Misc queries) | |||
Changing file in all upper case to upper and lower case | Excel Discussion (Misc queries) | |||
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) |