Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I purchased a rather large list that is in all caps (in .txt format). Is
there a function that will allow Excel (or any other Office product) to automatically change the names to proper case? I will need to save the results back in .txt format to import into a contact management program. |
#3
![]() |
|||
|
|||
![]()
=propoer(A1) in excel
or open in Word andFormatChange Case -----Original Message----- I purchased a rather large list that is in all caps (in .txt format). Is there a function that will allow Excel (or any other Office product) to automatically change the names to proper case? I will need to save the results back in .txt format to import into a contact management program. . |
#4
![]() |
|||
|
|||
![]()
I have tried this and it doesn't seem to work.
Where do I put the =proper(A1) ... in the column marked A1 or for the whole column? " wrote: =propoer(A1) in excel or open in Word andFormatChange Case -----Original Message----- I purchased a rather large list that is in all caps (in .txt format). Is there a function that will allow Excel (or any other Office product) to automatically change the names to proper case? I will need to save the results back in .txt format to import into a contact management program. . |
#5
![]() |
|||
|
|||
![]()
- Make a backup!
- Add a new column (lets say it's column B) - In B1 type: = Proper(A1) - B1 should now reflect how you want the data in A1 to appear - Copy B1 down as far as your list goes. Calculate (F9), if necessary. - Select Column B and Copy it. - With Column B still selected: EditPasteSpecialValues (this replaces the formula with the formula results) - After verifying that Column B is what you want and has no loss of data, you can delete Column A HTH, -- George Nicholson Remove 'Junk' from return address. "Britty" wrote in message ... I have tried this and it doesn't seem to work. Where do I put the =proper(A1) ... in the column marked A1 or for the whole column? " wrote: =propoer(A1) in excel or open in Word andFormatChange Case -----Original Message----- I purchased a rather large list that is in all caps (in .txt format). Is there a function that will allow Excel (or any other Office product) to automatically change the names to proper case? I will need to save the results back in .txt format to import into a contact management program. . |
#6
![]() |
|||
|
|||
![]()
Ivan Moala has a "Case Change" utility available that works very nice he
http://www.xcelfiles.com/Downloads_01.html Also ASAP Utilities has an option available for for case changing he http://www.asap-utilities.com/ Nothing to do on your part except download the "free" add-in, save it in your library path, then let the utility do the work. Then just copy / paste back to .txt format, or whatever is needed. If this is a procedure you do often, these add-ins are a real time saver when it comes to changing to Proper/Lower/All Caps
__________________
Justin Labenne www.jlxl.net |
#7
![]()
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 "Tom III" wrote: I purchased a rather large list that is in all caps (in .txt format). Is there a function that will allow Excel (or any other Office product) to automatically change the names to proper case? I will need to save the results back in .txt format to import into a contact management program. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Amount or Numbers in Words | New Users to Excel | |||
Is there a formula to spell out a number in excel? | Excel Worksheet Functions | |||
Convert Numeric into Text | Excel Worksheet Functions | |||
Spellnumber | Excel Worksheet Functions | |||
Identifying the Active Fill Color | Excel Discussion (Misc queries) |