+ Reply to Thread
Results 1 to 4 of 4

Capitalizing

Hybrid View

  1. #1
    Olga_Kosh
    Guest

    Capitalizing

    How do I capitalize the first letter of every word in an existing column or
    row which is very very long? Is there a way to do this without using the
    PROPER function?

  2. #2
    Bob Phillips
    Guest

    Re: Capitalizing

    Why would you want to?

    --

    HTH

    Bob Phillips

    (replace xxxx in the email address with gmail if mailing direct)

    "Olga_Kosh" <Olga_Kosh@discussions.microsoft.com> wrote in message
    news:31ABF1EC-5C5F-47C5-A59F-0337513356D5@microsoft.com...
    > How do I capitalize the first letter of every word in an existing column

    or
    > row which is very very long? Is there a way to do this without using the
    > PROPER function?




  3. #3
    Olga_Kosh
    Guest

    Re: Capitalizing

    The excell sheet is generated automatically form web registrations and
    sometimes people do not capitalize their own first and last names. Do you
    know how i could do this? Thank you

    "Bob Phillips" wrote:

    > Why would you want to?
    >
    > --
    >
    > HTH
    >
    > Bob Phillips
    >
    > (replace xxxx in the email address with gmail if mailing direct)
    >
    > "Olga_Kosh" <Olga_Kosh@discussions.microsoft.com> wrote in message
    > news:31ABF1EC-5C5F-47C5-A59F-0337513356D5@microsoft.com...
    > > How do I capitalize the first letter of every word in an existing column

    > or
    > > row which is very very long? Is there a way to do this without using the
    > > PROPER function?

    >
    >
    >


  4. #4
    Bob Phillips
    Guest

    Re: Capitalizing

    No, I mean why would you not use PROPER. Do you need to do it by macro,
    something like

    Sub Capitalize()
    Dim iLastRow As Long
    Dim i As Long

    iLastRow = Cells(Rows.Count, "A").End(xlUp).Row
    For i = iLastRow To 1 Step -1
    Cells(i, "A").Value = Application.Proper(Cells(i, "A").Value)
    Next i
    End Sub


    --

    HTH

    Bob Phillips

    (replace xxxx in the email address with gmail if mailing direct)

    "Olga_Kosh" <OlgaKosh@discussions.microsoft.com> wrote in message
    news:02953B1B-DDBB-4B2E-A589-660864BCFF08@microsoft.com...
    > The excell sheet is generated automatically form web registrations and
    > sometimes people do not capitalize their own first and last names. Do you
    > know how i could do this? Thank you
    >
    > "Bob Phillips" wrote:
    >
    > > Why would you want to?
    > >
    > > --
    > >
    > > HTH
    > >
    > > Bob Phillips
    > >
    > > (replace xxxx in the email address with gmail if mailing direct)
    > >
    > > "Olga_Kosh" <Olga_Kosh@discussions.microsoft.com> wrote in message
    > > news:31ABF1EC-5C5F-47C5-A59F-0337513356D5@microsoft.com...
    > > > How do I capitalize the first letter of every word in an existing

    column
    > > or
    > > > row which is very very long? Is there a way to do this without using

    the
    > > > PROPER function?

    > >
    > >
    > >




+ 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