Determining Sorting Criteria

Written by Allen Wyatt (last updated May 1, 2021)
This tip applies to Excel 97, 2000, 2002, and 2003


Suppose that a co-worker gives you have a worksheet that has several hundred rows of data in 27 columns. Before you start working with the data, you might want to know if it has previously been sorted. Knowing the information may not only remove the need to resort the data, but will also give you an idea as to what your co-worker felt was the most important way to look at the data.

Unfortunately, Excel doesn't have a built-in way to determine the sorting criteria used for a range of data. You could theoretically write a macro that would check each column and see if it were in ascending or descending order. This will tell you if that single column was sorted, but that doesn't necessarily mean that the entire data table was sorted by that column—it could just be coincidence that the column is in sorted order, and the sort was done by some other column. The task of checking gets even trickier when you start considering secondary and tertiary sorts.

There is one thing you can try, however, to determine if a particular column is sorted and whether it is sorted in ascending or descending order. (Remember: this won't tell you if the particular column was the primary column used for sorting, it will only tell you if the column is sorted.)

The idea behind the macro is to copy the contents of the column to a temporary worksheet, two times. For instance, if you want to check out column F, the macro copies column F to columns A and B on the temporary worksheet. The macro then sorts column B in ascending order and compares it to column A. If the sorted and unsorted columns are the same, then the original column was in ascending order. Then column B is sorted in descending order and the comparison done again. Again, if the columns are equal then the column is in descending order.

Sub TestIfSorted(i)
    Dim CColumn as Number
    Dim CSheet as String
    Dim FlagSort as String

    'Identify Current Column and Current Sheet
    CColumn = i
    CSheet = ActiveSheet.Name
    FlagSort = ""

    'Add a temporary sheet to test for sorting
    Sheets.Add
    ActiveSheet.Name = "TempSort"

    'Copy CURRENT column to Columns A,B in Current Sheet
    Sheets(CSheet).Select
    Columns(CColumn).Select
    Selection.Copy

    Sheets("TempSort").Select
    Range("A1").Select
    ActiveSheet.Paste
    Range("B1").Select
    ActiveSheet.Paste
    Application.CutCopyMode = False

    'In Column C test for equality of Columns A/B
    'If Sum in C1=0 then OK otherwise Col A<>Col B
    Range("B2").Select
    Selection.End(xlDown).Select
    Bottom = ActiveCell.Row
    Range(Cells(2, 3), Cells(Bottom, 3)).Select
    Selection.FormulaArray = "=IF(RC[-2]=RC[-1],0,1)"
    Range("C1").Select
    ActiveCell.FormulaR1C1 = "=SUM(R[1]C:R[6535]C)"

    'Sort Column B--Ascending - See if c1=0
    Columns("B:B").Select
    Selection.Sort Key1:=Range("B2"), Order1:=xlDescending, _
      Header:=xlYes, OrderCustom:=1, MatchCase:=False, _
      Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
    If Cells(1, 3).Value = 0 Then FlagSort = "Ascending"

    'Sort Column B--Descending - See if c1=0
    Columns("B:B").Select
    Selection.Sort Key1:=Range("B2"), Order1:=xlAscending, _
      Header:=xlYes, OrderCustom:=1, MatchCase:=False, _
      Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
    If Cells(1, 3).Value = 0 Then FlagSort = "Descending"

    If FlagSort = "Ascending" Then
        'Color Header on original sheet yellow
        Sheets(CSheet).Cells(1, CColumn).Interior.ColorIndex = 36
    End If

    If FlagSort = "Descending" Then
        'Color Header on original sheet orange
        Sheets(CSheet).Cells(1, CColumn).Interior.ColorIndex = 44
    End If

    'Delete temporary sheet
    Sheets("TempSort").Select
    ActiveWindow.SelectedSheets.Delete
End Sub

Once it is determined whether the original column was in ascending or descending order, then the first cell of the column in the original worksheet is set to yellow or orange, respectively. Finally, the temporary worksheet is deleted.

This macro could be modified so that it was called once for each column in a data table. Running the macro for an entire table wouldn't take that long, but would provide a colorful representation as to whether individual columns are sorted in ascending or descending order.

Of course, any macro like this is not trivial, so it may just be easier for you to figure out how you want to sort the data, and then sort it that way from the get-go.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2395) applies to Microsoft Excel 97, 2000, 2002, and 2003.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Reading a PDF Newsletter on a Cell Phone

Sometimes creating a Word document is just the first step. Often you'll want to then convert it to a PDF file that can be ...

Discover More

Selecting the Entire Document with the Mouse

Want a quick way to select your entire document without taking your hand off the mouse? Try clicking away using the ...

Discover More

Getting Rid of a Text Box, but Not the Text

Text boxes are designed to hold text. (Makes sense, right?) If you want to get rid of a text box, yet still keep the ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

More ExcelTips (menu)

Incomplete and Corrupt Sorting

Using the sorting tools, on the toolbar, may result in some unwanted results, such as jumbled data. If this happens to ...

Discover More

Importing Custom Lists

Custom lists are handy ways to enter recurring data in a worksheet. Here's how you can import your own custom lists from ...

Discover More

Ignoring Selected Words when Sorting

If you use Excel to maintain a list of text strings (such as movie, book, or product titles), you may want the program to ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is five more than 3?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.