Multilevel Sorting?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to get around the 3 level limit in sortng. Want to sort by 4
sets to 4 levels or more.
 
Not in one fell swoop, first sort the least significant etc
assume you would sort by columns A, B, C and D (in that order of
significance)
select C:D and sort in that order, then select A:D and sort by A
 
Sort the least significant column first, then sort on the most
significant 3.
 
Hi, Peo:

If the data requires 4 columns, A:D, I don't think you want to "select C:D and
sort" do you? That will uncouple the data in columns C and D from that in
columns A and B.

I think you mean to select columns A:D, sort on D (or C and D), then with A:D
still selected, sort on A, B, and C (or A and B). No?
 
Correct, meant select all columns and sort by the least significant first
Thanks
 

Ask a Question

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.

Ask a Question

Back
Top