You need a helper column. In this should be a formula concatenating all the
fields to be sorted.
=A1&B1&C1 ...
This will sort only in ascending order. You will need to include the value
of dates (not the actual dates) -
&VALUE(A1) or &VALUE("01/04/2006") as applicable
You need a helper column. In this should be a formula concatenating all the
fields to be sorted.
=A1&B1&C1 ...
This will sort the whole in ascending or descending order only. You will
need to include the value of dates (not the actual dates) -
&VALUE(A1) or &VALUE("01/04/2006") as applicable
If you need to sort in descending order you will have to use a separate sort
key.
The other solution is the more correct solution. Your solution
with concatenation is really only valid if each part in the concatenation
has a consistent length. Consider the following list. Correctly in sequence.
AA B
AA BC
AAA B
Sorting the concatenation could produce incorrect results as in:
AAAB
AAB
AABC
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.