Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Upper case to Lower case

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Upper case to Lower case

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Upper case to Lower case

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Upper case to Lower case

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Upper case to Lower case

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 69
Default Upper case to Lower case

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Changing multiple cell text from lower case to upper case Patti Excel Discussion (Misc queries) 2 January 4th 08 08:35 PM
Changing file in all upper case to upper and lower case Sagit Excel Discussion (Misc queries) 15 May 30th 07 06:08 AM
Change the text from lower case to upper case in an Excel work boo dave01968 Excel Discussion (Misc queries) 2 December 9th 05 09:09 AM
How do I change a column in Excel from upper case to lower case? Debbie Kennedy Excel Worksheet Functions 3 May 2nd 05 06:57 PM
How do I change existing text from lower case to upper case CT Cameron Excel Discussion (Misc queries) 2 November 30th 04 01:07 AM


All times are GMT +1. The time now is 03:06 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"