Formula help

  • Thread starter Thread starter flipflop1970
  • Start date Start date
F

flipflop1970

I have poker league and I use excel to keep track of points each week.

There are 20 weeks in the league but I only want to be able to use each
persons top 10 point totals. How woould I go about using a formula
that would only add the ten highest point totals.
 
You could use a RANK( ) formula on the points and then SUMIF( ) looking
at ranks below 11.

Hope this helps.

Pete
 
In a helper column, put this and copy down.........

=IF(A1>LARGE(A:A,11),A1,"")

Then, sum the helper columnn

or, use this........
=SUM(LARGE(A:A,{1,2,3,4,5,6,7,8,9,10}))

hth
Vaya con Dios,
Chuck, CABGx3
 

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


Back
Top