+ Reply to Thread
Results 1 to 4 of 4

Easy question: Sort ascending in a row?

  1. #1
    Registered User
    Join Date
    04-11-2006
    Posts
    2

    Easy question: Sort ascending in a row?

    Students names are listed vertically in Column A. Column B through some column, let's say P, contain test scores of each student by row, next to their names. There are 25 quizzes with a maximum score of 10, and 5 exams with a maximum score of 100. These scores are arranged horizontally going across the row next to the students name.

    How do I arrange the scores, in ascending order (from lowest to highest) for each student, so that I can delete or drop the lowest five quiz scores?

    I do not want to transfer everything to column form. I want to keep it in row form horizontally, and order it that way.

    For example ( Here are 8 quiz scores. arrange them ascending horizontally so lowest 5 can be dropped)

    1 John Doe 5 8 7 5 10 3 4
    2 Amy Smith 4 5 8 10 9 7 5

    THANKS!!!!

  2. #2
    Bondi
    Guest

    Re: Easy question: Sort ascending in a row?

    Hi Arjun,

    If you highlight one of the rows and go to Data -> Sort -> Options.
    Here you can choose Sort Top To Bottom or Sort Left To Right.. Choose
    Sort Left to right. Click Ok and choose Ascending and click OK.

    Regards,
    Bondi


  3. #3
    Carim
    Guest

    Re: Easy question: Sort ascending in a row?

    Hi Arjun,

    If I understand correctly your data starts in B2 ...
    following should do the job :

    Sub Macro1()
    Dim i As Integer
    Dim Lr As Integer
    Lr = Cells(Cells.Rows.Count, "B").End(xlUp).Row
    Range("B2").Select
    For i = 2 To Lr
    Range(Selection, Selection.End(xlToRight)).Select
    Selection.Sort Key1:=Selection.Cells(1), Order1:=xlAscending,
    Header:=xlGuess, _
    OrderCustom:=1, MatchCase:=False, Orientation:=xlLeftToRight
    Next i
    Range("A1").Select
    End Sub

    HTH
    Cheers
    Carim


  4. #4
    Registered User
    Join Date
    04-11-2006
    Posts
    2
    Carim,

    Would you mind simplifying your response? I don't really understand where to put that, or how to use that formula as I am new to excel!

    Thanks!

+ 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