How do make a "Top seller" list in excel?
Just the titles ... not the amount sold?
Say list on Sheet1, with titles in A1 to A20, and amounts sold in B1 to B20,
try this :
=INDEX(Sheet1!$A$1:$A$20,MATCH(LARGE(Sheet1!$B$1:$ B$20,ROWS($1:1)),Sheet1!$B
$1:$B$20,0))
And copy down 5 (or whatever) rows for top selling titles.
If you wanted numbers sold and titles along side,
try this in say C1 of Sheet2:
=LARGE(Sheet1!$B$1:$B$20,ROWS($1:1))
AND, in D1 of Sheet2, enter this:
=INDEX(Sheet1!$A$1:$A$20,MATCH(C1,Sheet1!$B$1:$B$2 0,0))
Select C1 and D1, and copy down 5 rows or more if desired.
Assuming there are no duplicates.
--
HTH,
RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===
"Robert" wrote in message
...
I need to have a list of our 5 top selling books based on a list of 20 or so
available books on another tab in excel. How do I do this?
|