Automatic Sort

B

Blade2304

Hi

I have a league table (attachment table named 'World Cup League'). I
updates scores as i enter them into a data table that precedes i
(titled 'Games Won'). I would like to be able to automatically sort th
'World Cup League' in descending order every time i enter data into th
'Games Won' table to save me having to sort it every time. Essentiall
whenever i enter a number into this table, in any cell, the tota
columns change. These totals then transfer into the 'World Cup League
table and therefore the competitors need sorting into rank order wit
most points first. I know i could do this with manually sorting eac
time i enter new data but it would be nice if it did it automatically
Also there may be blank rows in this table so i dont want them to b
included in this sort.Any ideas would be gratefully received as i a
trying to run a competition as a charity event and need to have to d
as little possible to save time. Thank yo

+-------------------------------------------------------------------
|Filename: World Cup.zip
|Download: http://www.excelforum.com/attachment.php?postid=4781
+-------------------------------------------------------------------
 
G

Guest

There is a way to "effectively" sort a column of numbers automatically. Say
the original numbers are in column A in cells A1 thru A20 (in random order).
In an un-used column enter:

=LARGE(A$1:A$20,1)
=LARGE(A$1:A$20,2)
=LARGE(A$1:A$20,3)
=LARGE(A$1:A$20,4)
=LARGE(A$1:A$20,5)
=LARGE(A$1:A$20,6)
=LARGE(A$1:A$20,7)
=LARGE(A$1:A$20,8)
=LARGE(A$1:A$20,9)
..
..
..
down the column. The numbers in the new column will display the numbers in
the orgininal column sorted. As the numbers in column A are changed, the
numbers in the new column will re-adjust.

If you have another column with names, VLOOKUP() can find them.

Please note that tied scores can be a problem.

Have a pleasant day.
 

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

Similar Threads


Top