I am trying to sort a column of data in ascending order but I am not getting the results I expect. An example of the data held in the cells is:
4972-1A
4972-10A
4972-2A
4972-1B
4972-3C
When I sort it in ascending order it sorts like:
4972-10A
4972-1A
4972-1B
4972-2A
4972-3C
I want it to sort as:
4972-1A, 1B, ...
4972-2A, 2B, ...
4972-3A, 3B,...
through to
4972-10A, 10B...
and so on...
Any help on how to sort it in the order that I want would be great.
Bookmarks