Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Tom III
 
Posts: n/a
Default How do I change from all caps to proper case?

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   Report Post  
 
Posts: n/a
Default

=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   Report Post  
Britty
 
Posts: n/a
Default

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   Report Post  
George Nicholson
 
Posts: n/a
Default

- 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   Report Post  
Junior Member
 
Location: Ohio
Posts: 19
Default

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 49
Default How do I change from all caps to proper case?

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
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
Amount or Numbers in Words ron New Users to Excel 6 December 24th 04 07:32 PM
Is there a formula to spell out a number in excel? Sha-nay-nay Excel Worksheet Functions 2 December 18th 04 09:25 PM
Convert Numeric into Text Monty Excel Worksheet Functions 0 December 18th 04 09:25 PM
Spellnumber Norman Jones Excel Worksheet Functions 6 December 13th 04 07:21 AM
Identifying the Active Fill Color Steve Conary Excel Discussion (Misc queries) 3 December 9th 04 04:45 AM


All times are GMT +1. The time now is 03:50 PM.

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"