Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a huge database in excel.
Unfortunately, some of the entries are in ALL CAPS (E. MAIN ST or JOHN SMITH) It is unfortunate as they need to be E. Main St or John Smith. Is there any way to fix this without retyping every entry? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try out the belowfunction
=PROPER(A1) May be in Sheet2 cell A1 try =PROPER(sHEET1!a1) and copy down/across as required and once complete copypaste specialValues. to convert all formulas to values If this post helps click Yes --------------- Jacob Skaria "sos-DC" wrote: I have a huge database in excel. Unfortunately, some of the entries are in ALL CAPS (E. MAIN ST or JOHN SMITH) It is unfortunate as they need to be E. Main St or John Smith. Is there any way to fix this without retyping every entry? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Thu, 19 Nov 2009 08:54:09 -0800, sos-DC
wrote: I have a huge database in excel. Unfortunately, some of the entries are in ALL CAPS (E. MAIN ST or JOHN SMITH) It is unfortunate as they need to be E. Main St or John Smith. Is there any way to fix this without retyping every entry? If you use the function PROPER() you will get the result E. Main St Or John Smith which is not exactly what you want, but very close. Hope this helps / Lars-Åke |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Manually use the PROPER worksheet function.
Or install and run this macro. Sub Proper_Case() Dim rng As Range Set rng = Nothing On Error Resume Next Set rng = Cells.SpecialCells(xlCellTypeConstants) On Error GoTo 0 If rng Is Nothing Then Else rng.Formula = Application.Proper(rng.Formula) End If End Sub Gord Dibben MS Excel MVP On Thu, 19 Nov 2009 08:54:09 -0800, sos-DC wrote: I have a huge database in excel. Unfortunately, some of the entries are in ALL CAPS (E. MAIN ST or JOHN SMITH) It is unfortunate as they need to be E. Main St or John Smith. Is there any way to fix this without retyping every entry? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
This may works, try assuming cell A1 hold E.MAIN ST place this formula in cell B1, PROPER(A1) and copy down to the last data where column A is fill. then select and copy the range in colmun B and do a paste special value into the range in column A -- Hope this help Pls click the Yes button below if this post provide answer you have asked Thank You cheers, francis "sos-DC" wrote: I have a huge database in excel. Unfortunately, some of the entries are in ALL CAPS (E. MAIN ST or JOHN SMITH) It is unfortunate as they need to be E. Main St or John Smith. Is there any way to fix this without retyping every entry? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
lower case letter "i" always converts to upper case | Excel Discussion (Misc queries) | |||
Converting "uppercase" string data to "lower case" in CSV file | Excel Discussion (Misc queries) | |||
Validation ?:Accepting both Numbers AND specific letters("N","n"," | Excel Discussion (Misc queries) | |||
how do I count only lower case "x" and exclude upper case "X" | Excel Worksheet Functions | |||
Changing "returned" values from "0" to "blank" | Excel Worksheet Functions |