Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Sorting for a Walking Tour.

Sorting for a Walking Tour

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


Francine has a series of addresses in a worksheet. The house numbers are in one column (124, 127, 130, etc.) and the street name is in the adjacent column (Maple St., Elm St., etc.). She needs to sort the list first by street name and then by house number with the even numbers first, in ascending order, and then the odd numbers next, in descending order. This will allow her to create a list of houses, in order, for a walking tour. People can then walk down the even-numbered side of the street, cross to the other side, and walk back down the odd-numbered side of the street. She wonders how to do this type of sorting.

Excel allows you to sort information in ascending and descending order quickly by using the sort feature. While this option is useful in many instances, this is an example of one time when a formula is necessary to determine a value you can use in your sorting. There are a few ways to do this.

You need to create a column that will specify each address as odd or even. Assuming the number portion of the address is in cell A1 and the street name is in B1, in a third column you could enter this formula:

=IF(ISEVEN(A1),B1&"_0_"&A1,B1&"_1_"&MAX($A$1:$A$19)-A1)

This formula returns the name of the street with some numbers that are for sorting purposes only. At this point, copy and paste the formula down the new column you created. Once the formula has been entered for each address, you can sort the information. You only need to sort by the formula, in ascending order. Excel returns the addresses with the street names in alphabetical order where the even street numbers are in ascending order, followed by the odd street numbers in descending order, as requested.

Note: In the above formula, it is assumed that the range for the addresses is A1:A19, which is where MAX($A$1:$A$19) comes from. If there are more addresses, then put the correct range in that portion of the formula.

And yet another approach is to use the following formula:

=IF(MOD(A1,2)=1,(1+RANK(A1,A:A,1))/2,(COUNT(A:A)+RANK(A1,A:A)+1)/2)

The numbers returned by this formula are not particularly important; they essentially assign a relative order for an address based on the house number. Simply copy and paste the formula down the column you created and sort the information. You then need to sort the list, first by street name in ascending order and then by the formula in descending order. The result is that your addresses are ordered in the desired fashion.

You can also use the same MOD formula as follow for a different approach:

=MOD(A1,2)*(9999999-A1*2)+A1

This formula returns two types of numbers—big ones for odd addresses and small ones for even addresses. As with the previous formulas, copy and paste the formula down the column you created. Once this is done you can sort the information. You need to sort first by street name, then by formula, both in ascending order. Excel orders the addresses based on the formula, which puts the even addresses first and the odd addresses second, in descending order.

As you can see, there are a number of formulas that can return the same information. Play around with them and use the one that makes sense for you and your project.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8103) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Sorting for a Walking Tour.

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

Searching for Multi-Byte Hex Codes

Need to find a character for which you only know the hex code? There are a few ways you can search for the information, ...

Discover More

Getting Rid of Blank Labels in a Filtered Merge

If you are filtering a mail merge in Excel, and you get blank labels in the printout in Word, chances are good that ...

Discover More

Recording a Data Entry Time

When entering information in a worksheet, it is common to also note a date or time corresponding to the entry. There are ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!

More ExcelTips (menu)

Too Many Formats when Sorting

Sorting is one of the basic operations done in a worksheet. If your sorting won't work and you instead get an error ...

Discover More

Moving Cell Borders when Sorting

Sort your data and you may be surprised at what Excel does to your formatting. (Some formatting may be moved in the sort ...

Discover More

Sorting while Ignoring Leading Characters

Want to ignore some characters at the beginning of each cell when sorting? The easiest way is to simply create other ...

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 1 + 1?

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.