by Svetlana Cheusheva, updated on
This tutorial will teach you a few quick and easy ways to put Excel in alphabetical order. It also provides solutions for non-trivial tasks, for example how to alphabetize by last name when the entries start with the first name.
Alphabetizing in Excel is as easy as ABC. Whether you are sorting an entire worksheet or selected range, vertically (a column) or horizontally (a row), ascending (A to Z) or descending (Z to A), in most cases the task can be accomplished with a button click. In some situations, however, the built-in features may stumble, but you can still figure out a way to sort by alphabetical order with formulas.
This tutorial will show you a few quick ways to alphabetize in Excel and teach how to foresee and prevent sorting problems.
Overall, there are 3 main ways to sort alphabetically in Excel: A-Z or Z-A button, the Sort feature, and filter. Below you will find the detailed guidance on each method.
The fastest way to sort alphabetically in Excel is this:
The same buttons can also be accessed from Home tab > Editing group > Sort and Filter:
Either way, Excel will alphabetize your list instantaneously:
Tip. After you've done sorting and before you do anything else, take a close look at the results. If something looks wrong, click the Undo button to restore the original order.
If your data set contains two or more columns, you can use the A-Z or Z-A button to put one of the columns in alphabetical order and Excel will automatically move the data in other columns, keeping the rows intact.
As you can see in the sorted table on the right, the related information in each row is kept together:
In some situations, mostly when just one or a few cells in the middle of your data set are selected, Excel is unsure which part of the data to sort and asks for your instructions. If you'd like to sort the entire dataset, leave the default Expand the selection option checked, and click Sort:
Note. In this tutorial, a "table" is just any data set. Technically, all our examples are for ranges. Excel table has inbuilt sorting and filtering options.
Another quick way to sort alphabetically in Excel is to add a filter. The beauty of this method is that it's one-time setup - once the auto filter is applied, the sort options for all columns are only a mouse click away.
Adding a filter to your table is easy:
The column is alphabetized straight away, and a small upward arrow on the filter button indicates the sorting order (ascending):
To reverse the order, select Sort Z to A from the filter drop-down menu.
To remove the filter, simply click the Filter button again.
In case you want to alphabetize data in several columns, use the Excel Sort command, which gives more control over how your data is sorted.
As an example, let's add one more column to our dataset, and then arrange the entries alphabetically first by Region, and then by Name:
To have it done, please perform the following steps:
In most cases, you can select just one cell and Excel will pick the rest of your data automatically, but this is an error-prone approach, especially when there are some gaps (blank cells) within your data.
In the Sort by dropdown box, select the column you want to alphabetize first, Region in our case. In the other two boxes, leave the default settings: Sort On - Cell values and Order - A to Z:
Tip. If the first dropdown is showing column letters instead of headings, tick off the My data has headers box.
In this example, the second level sorts the values in the Name column alphabetically from A to Z:
Tip. If you are sorting by multiple columns with the same criteria, click Copy Level instead of Add Level. In this case, you will only have to choose a different column in the first box.
Excel will sort your data in the specified order. As shown in the screenshot below, our table is arranged alphabetically exactly as it should: first by Region, and then by Name:
Tip. If the items you want to sort contain both text and numbers, check out How to sort mixed numbers and text in Excel.
If your data is arranged horizontally, you may want to sort it alphabetically across rows. This can also be done by using the Excel Sort feature. Here's how:
As the result, the first row in our table is sorted in alphabetical order, and the rest of the data is rearranged accordingly, preserving all correlations between the entries:
Excel sort features are amazing, but if you are working with an imperfectly structured data, things may go terribly wrong. Here are the two common issues.
If there are empty or hidden rows and columns within your data, and you select just one cell before clicking the sort button, only the part of your data until the first blank row and/or column will be sorted.
An easy fix is to eliminate the blanks and unhide all hidden areas before sorting. In case of blank rows (not hidden rows!), you can select the entire table first, and then alphabetize.
If your column headers are formatted differently from the rest of the data, Excel is smart enough to identify them and exclude from sorting. But if the header row has no special formatting, your column headers will most likely be treated as regular entries and end up somewhere in the middle of the sorted data. To prevent this from happening, select only the data rows, and then sort.
When using the Sort dialog box, make sure the My data has headers checkbox is selected.
Microsoft Excel provides a variety of features to cope with many different tasks. Many, but not all. If you are facing a challenge for which there is no built-in solution, chances are it can be accomplished with a formula. It is also true for alphabetical sorting. Below, you will find a couple of examples when alphabetical order can only be done with formulas.
Since there are a few common ways to write names in English, you may sometimes find yourself in a situation when the entries start with the first name while you need to alphabetize them by the last name:
Excel's sort options cannot help in this case, so let's resort to formulas.
With a full name in A2, insert the following formulas in two different cells, and then copy them down the columns until the last cell with data:
In C2, extract the first name:
=LEFT(A2,SEARCH(" ",A2)-1)
In D2, pull the last name:
=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,1))
And then, concatenated the parts in the reverse order separated by comma:
=D2&", "&C2
The detailed explanation of the formulas can be found here, for now let's just focus on the results:
Since we need to alphabetize the names, not formulas, convert them to values. For this, select all the formula cells (E2:E10) and press Ctrl + C to copy them. Right-click the selected cells, click on Values under Paste Options, and press the Enter key:
Good, you are almost there! Now, select any cell in the resulting column, click the A to Z or Z to A button on the Data tab, and there you have it - a list alphabetized by the last name:
In case you need to revert to the original First Name Last Name format, there is a little more work for you to do:
Split the names into two parts again by using the below formulas (where E2 is a comma-separated name):
Get the first name:
=RIGHT(E2, LEN(E2) - SEARCH(" ", E2))
Get the last name:
=LEFT(E2, SEARCH(" ", E2) - 2)
And bring the two parts together:
=G2&" "&H2
Perform the formulas to values conversion one more time, and you are good to go!
The process may look a bit complex on paper, but trust me, it will take only a few minutes in your Excel. In fact, it will take even less time than reading this tutorial, let alone alphabetizing the names manually :)
In one of the previous examples we discussed how to alphabetize rows in Excel by using the Sort dialog box. In that example, we were dealing with a correlated set of data. But what if each row contains independent information? How do you alphabetize each row individually?
In case you have a reasonable number of rows, you can sort them one by one performing these steps. If you have hundreds or thousands of rows, that would be an enormous waste of time. Formulas can do the same thing much faster.
Suppose you have many rows of data that should be re-arranged alphabetically like this:
To begin with, copy the row labels to another worksheet or another location in the same sheet, and then use the following array formula to put each row in alphabetical order (where B2:D2 is the first row in the source table):
=INDEX($B2:$D2, MATCH(COLUMNS($B2:B2), COUNTIF($B2:$D2, "<="&$B2:$D2), 0))
Please remember that the correct way to enter an array formula in Excel is by pressing Ctrl + Shift + Enter.
If you are not very comfortable with Excel array formulas, please following these steps to enter it correctly in your worksheet:
Important note! The above formula works with a couple of caveats: your source data should not contain empty cells or duplicate values.
If your dataset has some blanks, wrap the formula in the IFERROR function:
=IFERROR(INDEX($B2:$D2,MATCH(COLUMNS($B2:B2),COUNTIF($B2:$D2,"<="&$B2:$D2),0)), "")
Unfortunately, there is no easy solution for duplicates. If you know one, please do share in comments!
The above formula is based on the classic INDEX MATCH combination used to perform horizontal lookup in Excel. But since we need kind of "alphabetical lookup", we have rebuilt it in this way:
COUNTIF($B2:$D2,"<="&$B2:$D2) compares all the values in the same row with each other and returns an array of their relative ranks. For example, in row 2 it returns {2,3,1}, meaning Caden is 2nd, Oliver is 3rd, and Aria is 1st. This way, we get the lookup array for the MATCH function.
COLUMNS($B2:B2) supplies the lookup value. Due to a clever use of absolute and relative references, the returned number is incremented by 1 as we go right. That is, for G2, the lookup value is 1, for H2 - 2, for I2 - 3.
MATCH searches for the lookup value calculated by COLUMNS() in the lookup array returned by COUNTIF(), and returns its relative position. For example, for G2, the lookup value is 1, which is in the 3rd position in the lookup array, so MATCH returns 3.
Finally, INDEX extracts the real value based on its relative position in the row. For G2, it fetches the 3rd value in the range B2:D2, which is Aria.
If you are dealing with independent subsets of data organized vertically in columns, you can easily tweak the above formula to alphabetize each column individually. Just replace COLUMNS() with ROWS(), make a few column coordinates absolute and row coordinates relative and your formula is ready:
=INDEX(A$3:A$5,MATCH(ROWS(A$3:A3),COUNTIF(A$3:A$5,"<="&A$3:A$5),0))
Please remember it's an array formula, which should be completed with Ctrl + Shift + Enter:
Apart from providing solutions to the tasks that are impossible to accomplished with Excel built-in sort options, formulas have one more (though disputable :) advantage - they make sorting dynamic. With inbuilt features, you will have to resort your data each time new entries are added. With formulas, you can add new data any time and the sorted lists will update automatically.
If you'd rather make your new alphabetical arrangement static, replace formulas with their results by using Paste Special > Values.
To have a closer look at the formulas discussed in this tutorial, you are welcome to download our Excel Alphabetical Order worksheet. I thank you for reading and hope to see you on our blog next week!
Table of contents