sort

M

maxsquires

I am trying to sort two columns at the same time.

I understand the basic sorting technique but am having trouble when it
comes to sorting the second column.
I have an x coordinate column and a y coordinate column. I want to
have the spreadsheet display the records in order of x,y coordinate
from upper left to lower right. That would mean sorting the x values
ascending then the y values descending. I had hoped that the result of
the sort would be sequential x values followed by the next further down
y values continuing the increas, left-to-right of the x values. But
this is not happening. I don't know why. Any ideas?

THanks

Max
 
G

Guest

Please post a small example (not an attachment), of what you want to see, and
what you're getting now.

Vaya con Dios,
Chuck, CABGx3
 
B

Bernard Liengme

Try a two-step process:
Sort the dataset using the Y columns as key
Then sort it using the X column
I assume you want
2 5
3 6
2 4
3 3
to become
2 4
2 5
3 3
3 6
 
M

maxsquires

that's right. i have tried two part sorting and it doesn't work for me.
could it be a glitch or something related to the dbf file format?
 

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

Top