ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   In excel , is there a way i can change UPPERCASE to lowercase? (https://www.excelbanter.com/excel-discussion-misc-queries/45762-excel-there-way-i-can-change-uppercase-lowercase.html)

Maria

In excel , is there a way i can change UPPERCASE to lowercase?
 
Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL

Mike

I dump it into word, change to lowercase and dump it back to excel.
Excel does not have this.

"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL


bigwheel

Have a look here http://www.xcelfiles.com/VBA_Quick16.html

"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL


TomHinkle

look up the functions:

UPPER - converts to upper case
LOWER - converts to lower case
PROPER - converts to proper case (First Letter Of Each Word Capitalized)

"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL


David Billigmeier

Actually there is a way in Excel... use the =LOWER() function.

Example:
=LOWER("UPPER CASE TEXT") will return "upper case text"


--
Regards,
Dave
<!--


"Mike" wrote:

I dump it into word, change to lowercase and dump it back to excel.
Excel does not have this.

"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL


Maria

I can't find the functions, can you help me?

"TomHinkle" wrote:

look up the functions:

UPPER - converts to upper case
LOWER - converts to lower case
PROPER - converts to proper case (First Letter Of Each Word Capitalized)

"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL


Maria

david, thank you for your help. when i tried doing that the original writing
disappeared.

Thanks
Maria

"David Billigmeier" wrote:

Actually there is a way in Excel... use the =LOWER() function.

Example:
=LOWER("UPPER CASE TEXT") will return "upper case text"


--
Regards,
Dave
<!--


"Mike" wrote:

I dump it into word, change to lowercase and dump it back to excel.
Excel does not have this.

"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL


David Billigmeier

Try this, lets say your original values are in column A, in the range
A1:A1000. Place the formula =LOWER(A1) in B1 and drag all the way down to
B1000. Then, copy the B1:B1000 range, right-click on A1, click "Paste
Special..." and select "Values".

Use this technique to the cells you want to change, I used column's A and B
in this example.


--
Regards,
Dave
<!--


"Maria" wrote:

david, thank you for your help. when i tried doing that the original writing
disappeared.

Thanks
Maria

"David Billigmeier" wrote:

Actually there is a way in Excel... use the =LOWER() function.

Example:
=LOWER("UPPER CASE TEXT") will return "upper case text"


--
Regards,
Dave
<!--


"Mike" wrote:

I dump it into word, change to lowercase and dump it back to excel.
Excel does not have this.

"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL


Anne Troy

Hi, Maria. I've got a bunch of information on it he
http://www.officearticles.com/excel/...ft_exce l.htm
************
Anne Troy
www.OfficeArticles.com

"Maria" wrote in message
...
david, thank you for your help. when i tried doing that the original
writing
disappeared.

Thanks
Maria

"David Billigmeier" wrote:

Actually there is a way in Excel... use the =LOWER() function.

Example:
=LOWER("UPPER CASE TEXT") will return "upper case text"


--
Regards,
Dave
<!--


"Mike" wrote:

I dump it into word, change to lowercase and dump it back to excel.
Excel does not have this.

"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel...
I know
WORD has it, but I can't seem to find it EXCEL




Jacquie

In excel , is there a way i can change UPPERCASE to lowercase?
 
Thanks David...this was very helpful!

"David Billigmeier" wrote:

Try this, lets say your original values are in column A, in the range
A1:A1000. Place the formula =LOWER(A1) in B1 and drag all the way down to
B1000. Then, copy the B1:B1000 range, right-click on A1, click "Paste
Special..." and select "Values".

Use this technique to the cells you want to change, I used column's A and B
in this example.


--
Regards,
Dave
<!--


"Maria" wrote:

david, thank you for your help. when i tried doing that the original writing
disappeared.

Thanks
Maria

"David Billigmeier" wrote:

Actually there is a way in Excel... use the =LOWER() function.

Example:
=LOWER("UPPER CASE TEXT") will return "upper case text"


--
Regards,
Dave
<!--


"Mike" wrote:

I dump it into word, change to lowercase and dump it back to excel.
Excel does not have this.

"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL


PlayingToAudienceOfOne

In excel , is there a way i can change UPPERCASE to lowercase?
 
Copy the following 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


"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL


Blondie and Dagwood

In excel , is there a way i can change UPPERCASE to lowercase?
 


"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I know
WORD has it, but I can't seem to find it EXCEL


This worked for me:
Create a blank column to the right of the column you want to change upper
case to lower case - let's say your information is in Column A.
Type =(LOWERA1) in the first cell of the blank column. (If your info is in
Column B, type B1, etc)
Click the corner of that cell and drag all the way down to the last cell
that has info in it.
Like magic, the letters were changed to lower case.
I still don't know how this worked after all I've read here, but it did.


David Biddulph[_2_]

In excel , is there a way i can change UPPERCASE to lowercase?
 
I hope you meant =LOWER(A1) not =(LOWERA1) ?
--
David Biddulph

"Blondie and Dagwood" <Blondie and wrote
in message ...


"Maria" wrote:

Please e-mail me back ASAP, if there's a way to do this in Excel... I
know
WORD has it, but I can't seem to find it EXCEL


This worked for me:
Create a blank column to the right of the column you want to change upper
case to lower case - let's say your information is in Column A.
Type =(LOWERA1) in the first cell of the blank column. (If your info is
in
Column B, type B1, etc)
Click the corner of that cell and drag all the way down to the last cell
that has info in it.
Like magic, the letters were changed to lower case.
I still don't know how this worked after all I've read here, but it did.





All times are GMT +1. The time now is 05:08 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com