View Full Version : Excel Help
GilbertsGrape
02-20-2003, 01:57 PM
I have an excel Document that is in ALL CAPS and I need it to be in Caps and lowercase letters. Or even all lower case would help. Is there a way to convert this?
eSDee
02-20-2003, 02:16 PM
Go to Edit->Find and then click on the Replace tab. In the Find field put "A" and then in the Replace field put "a". At the bottom left click on "Replace all". Do this with every letter, and you should be good to go.
GilbertsGrape
02-20-2003, 02:54 PM
Originally posted by eSDeeLoco
Go to Edit->Find and then click on the Replace tab. In the Find field put "A" and then in the Replace field put "a". At the bottom left click on "Replace all". Do this with every letter, and you should be good to go.
HA HA HA !!!
I only have about 10,000 Records to do
eSDee
02-20-2003, 03:04 PM
Originally posted by GilbertsGrape
I have an excel Document that is in ALL CAPS and I need it to be in Caps and lowercase letters. Or even all lower case would help. Is there a way to convert this?
:shrug: It said document. Replace all will replace all in the document.
seqiro
02-20-2003, 03:32 PM
You can do this with a macro. A quick google search came up with the following:
Sub Propercase_macro()
Dim selectie As Range
Dim cel As Range
On Error Resume Next
Set selectie = Range(ActiveCell.Address & "," & Selection.Address) _
.SpecialCells(xlCellTypeConstants, xlTextValues)
If selectie Is Nothing Then Exit Sub
For Each cel In selectie
cel.Value = StrConv(cel.Value, vbProperCase)
Next cel
End Sub
Create that macro, select the whole sheet, and run the macro.
GilbertsGrape
02-20-2003, 04:18 PM
Thank you seqiro That worked Great.
mcs328
02-20-2003, 04:19 PM
Can you copy the whole bloody thing in MS Word then I think go under Format -> Change Case, choose either all lower case, Sentence case, Title Case, UPPERCASE, or ToGgLe CaSe?
The paste back the whole crapola back into excel?
eSDee
02-20-2003, 05:57 PM
You're welcome Gilbert. Oh wait, no you're not ;)
GilbertsGrape
02-21-2003, 09:36 AM
Originally posted by eSDeeLoco
You're welcome Gilbert. Oh wait, no you're not ;)
I can see you are one of those trouble makers. ;) :angel:
Powered by vBulletin® Version 4.1.12 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.