Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 20
Default changing "case" of letters

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default changing "case" of letters

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 913
Default changing "case" of letters

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default changing "case" of letters

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 120
Default changing "case" of letters

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
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
lower case letter "i" always converts to upper case Carolyn Excel Discussion (Misc queries) 1 August 28th 08 01:56 AM
Converting "uppercase" string data to "lower case" in CSV file [email protected] Excel Discussion (Misc queries) 2 August 12th 08 08:36 PM
Validation ?:Accepting both Numbers AND specific letters("N","n"," Antonio Excel Discussion (Misc queries) 2 April 22nd 08 05:07 PM
how do I count only lower case "x" and exclude upper case "X" jbeletz Excel Worksheet Functions 3 October 14th 06 10:50 PM
Changing "returned" values from "0" to "blank" LATATC Excel Worksheet Functions 2 October 20th 05 04:41 PM


All times are GMT +1. The time now is 04:33 AM.

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"