from CAPITAL to lower case??

KATSALAS

Board Regular
Joined
Sep 14, 2004
Messages
60
i have 250 cells..
each cell has 2-5 words.
ALL ARE CAPITAL...

how can i convert it all but the first letter to lower case ...
or(if not possible)
how can i convert all to lower case including the first letter
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hello KATSALAS.

Here's one way, if you have another 250 cells to put formulae into.

=LEFT(A1,1)&LOWER(MID(A1,2,99999))

Change the ranges as you need to, and copy the formula across and/or down.

HTH
 
Upvote 0
Or you could use the PROPER worksheet function.

=PROPER(A1)
 
Upvote 0
When you paste which formula do you get the #REF? If it was mine, you will need to adjust your ranges to where the data is located.


For Oaktree and/or Norie. I never used PROPER before, nice response. Is there any way when using PROPER that the second, third, words etc would be lower case as well?
 
Upvote 0
both formulas work fine....thank you guys...

i got what i wanted a new colunm with the correct data ...when i delete the original colonm i get #REF
 
Upvote 0
Don't delete the original column.

Copy the column with the formulas.

Select the original column and Edit>Paste Special... Values.

You can now delete the column with the formulas.
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top