+ Reply to Thread
Results 1 to 2 of 2

Converting CAPS text to Proper Case

  1. #1
    Registered User
    Join Date
    05-04-2006
    Posts
    1

    Converting CAPS text to Proper Case

    Hello all,

    I've read this site without registering for some time, but now I have a question and am hoping someone can help me.

    I have a book that has thousands of names all in ALL CAPS, and I was wondering if there was a way to convert them all to Proper Case? I also seem to be having trouble converting them one at a time using the =Proper formula.

    Any thoughts.
    Much appreciated.
    RS

  2. #2
    Bob Phillips
    Guest

    Re: Converting CAPS text to Proper Case

    You could use a sub

    Sub ChangeToProper()
    Dim cell as Range
    For Each cell In Activesheet.Usedrange
    cell.Value = APplication.Proper(cell.Value)
    Next cell
    End Sub

    --
    HTH

    Bob Phillips

    (remove xxx from email address if mailing direct)

    "rsantos17" <[email protected]> wrote
    in message news:[email protected]...
    >
    > Hello all,
    >
    > I've read this site without registering for some time, but now I have a
    > question and am hoping someone can help me.
    >
    > I have a book that has thousands of names all in ALL CAPS, and I was
    > wondering if there was a way to convert them all to Proper Case? I also
    > seem to be having trouble converting them one at a time using the
    > =Proper formula.
    >
    > Any thoughts.
    > Much appreciated.
    > RS
    >
    >
    > --
    > rsantos17
    > ------------------------------------------------------------------------
    > rsantos17's Profile:

    http://www.excelforum.com/member.php...o&userid=34124
    > View this thread: http://www.excelforum.com/showthread...hreadid=538946
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1