- column
- TECHNOLOGY Q&A
Overcome Excel’s Sort Function Shortcoming
Please note: This item is from our archives and was published in 2006. It is provided for historical reference. The content may be out of date and links may no longer function.
Related
AI-driven spreadsheet tools — what CPAs need to know
Car talk: M&A, AI and EVs changing the dealership landscape
Is spending on technology spinning out of control?
TOPICS
I have a spreadsheet that lists products with identifiers that go from C1 up to C1267. Since they are all unsorted, I tried to use Excel’s Sort function to put them in order, but then I ended up with C1, C10, C100, etc. What am I doing wrong?
What you don’t realize is that, because the first character in each cell is a letter, Excel is sorting the data as text. As a result, it first sorted all the cells starting in C1. It wasn’t until it got to the 62nd entry that it got to C2.
The solution is to use the LEN, RIGHT and LEFT functions to convert the ID format: adding zeros before the numbers, so C1 becomes C001, C2 becomes C002, etc. The conversion formula looks like this:
=LEFT(C1,1) & RIGHT(“000” & RIGHT(C1,LEN(C1)-1),3)
Now, when you sort by the newly formatted entries, you get the desired results.