+ Reply to Thread
Results 1 to 5 of 5

alphabetizing rows automatically

  1. #1
    tonya
    Guest

    alphabetizing rows automatically

    In excel how do I get my rows under column A to automatically alphabetize

  2. #2
    Registered User
    Join Date
    09-10-2003
    Location
    Detroit, MI
    Posts
    59
    Select all cells containing data (for example: A2-G25).
    Click on Data>Sort and then specify to "Sort On" Col A and "Ascending".
    Neopolitan (Florida Dreaming)

  3. #3
    Bob Umlas
    Guest

    Re: alphabetizing rows automatically

    Right/click the sheet tab, select View Code, enter this:
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Column = 1 Then
    Columns(1).Sort key1:=Range("A1"), order1:=xlAscending,
    header:=xlGuess
    End If
    End Sub

    "tonya" <[email protected]> wrote in message
    news:[email protected]...
    > In excel how do I get my rows under column A to automatically alphabetize




  4. #4
    Ron Coderre
    Guest

    RE: alphabetizing rows automatically

    I think you need to give us some more details about your data and what you
    want sorted.


    ***********
    Regards,
    Ron

    XL2002, WinXP-Pro


    "tonya" wrote:

    > In excel how do I get my rows under column A to automatically alphabetize


  5. #5
    Dave Peterson
    Guest

    Re: alphabetizing rows automatically

    Maybe:
    http://contextures.com/xlSort02.html
    from Debra Dalgleish's site.

    It's automatic after you click a rectangle.

    tonya wrote:
    >
    > In excel how do I get my rows under column A to automatically alphabetize


    --

    Dave Peterson

+ 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