How to sort into a new table

C

CWatters

I'm familiar with the sort ascending button - but that "sorts in place" and
I need to preserve the original table (I don't want to have to manually copy
it each time the data changes either).

I was trying to use a formulae something (but not exactly) like this to copy
and sort rows into an second table...

{=INDEX(Array, MATCH(LARGE(Column,1),0)}
{=INDEX(Array, MATCH(LARGE(Column,2),0)}
{=INDEX(Array, MATCH(LARGE(Column,3),0)}
etc

.... but it doesn't handle duplicate matches in the sort column.

can someone point me to some good examples or suggest a better way?
 
P

Peter

Why not insert a new column in column A and fill in an
index number for each item. You can then sort the table as
you like and re-set it again using the index numbers.

Regards
Peter Atherton
(e-mail address removed)
 
C

CWatters

Peter said:
Why not insert a new column in column A and fill in an
index number for each item. You can then sort the table as
you like and re-set it again using the index numbers.

I really need both tables at the same time and eliminate the manual steps.
Thanks anyway.
 

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