PC Review


Reply
Thread Tools Rate Thread

changing "case" of letters

 
 
sos-DC
Guest
Posts: n/a
 
      19th Nov 2009
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 With Quote
 
 
 
 
Jacob Skaria
Guest
Posts: n/a
 
      19th Nov 2009
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 copy>paste special>Values. 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?

 
Reply With Quote
 
Lars-Åke Aspelin
Guest
Posts: n/a
 
      19th Nov 2009
On Thu, 19 Nov 2009 08:54:09 -0800, sos-DC
<(E-Mail Removed)> 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
 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      19th Nov 2009
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 <(E-Mail Removed)>
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 With Quote
 
Francis
Guest
Posts: n/a
 
      19th Nov 2009
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 With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: "CHANGING CASE SENSITIVE WORDS" Suzanne S. Barnhill Microsoft Word Document Management 0 13th Jan 2007 03:32 PM
how do I count only lower case "x" and exclude upper case "X" =?Utf-8?B?amJlbGV0eg==?= Microsoft Excel Worksheet Functions 3 14th Oct 2006 10:50 PM
When "Do you use sentence case" or "Title Case" bullets in PP =?Utf-8?B?Nl9kZWdyZWVzX29mX3NlcGVyYXRpb24=?= Microsoft Powerpoint 7 28th Sep 2006 04:26 AM
excel - changing upper case letters into lower case letters BJorg Microsoft Excel Worksheet Functions 5 16th Feb 2004 08:40 AM
Cookies will not enable even after changing settings for "Security" and "Privacy" tabs in "Internet Options", any suggestions? =?Utf-8?B?dGlhbmltaA==?= Windows XP Help 2 27th Jan 2004 12:46 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:12 PM.