Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
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 |
#2
![]() |
|||
|
|||
![]()
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 |
#3
![]() |
|||
|
|||
![]()
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 |
#4
![]() |
|||
|
|||
![]()
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 |
#5
![]() |
|||
|
|||
![]()
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 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#7
![]() |
|||
|
|||
![]()
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 |
#8
![]() |
|||
|
|||
![]()
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 |
#9
![]() |
|||
|
|||
![]()
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 |
#10
![]() |
|||
|
|||
![]()
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 |
#11
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#12
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() "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. |
#13
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to change the color of all series in an excel chart in one go. | Charts and Charting in Excel | |||
how to change range for dynamic chart in excel 2000 with button? | Charts and Charting in Excel | |||
Excel renames sheet (repaired) when trying to change data from a . | Excel Worksheet Functions | |||
how do I change an excel template into a "workbook" | Excel Discussion (Misc queries) | |||
how do I change the text case of imported data in excel? | Excel Discussion (Misc queries) |