The Tournament Director Forums

Main => Help Me => Topic started by: Bixby on April 11, 2017, 12:09:37 PM

Title: League reporting
Post by: Bixby on April 11, 2017, 12:09:37 PM
Hello:

I run an annual league and we have our formula working properly for points for our nightly games.

I would like the season stats to reflect the 6 best scores from league games. The league is 10 games, although not everyone plays all 10 games.

Is this possible within Tournament Director?
Title: Re: League reporting
Post by: Corey Cooper on April 11, 2017, 01:55:32 PM
Yes.  Probably you want to use something like the following Overall Scores formula on the Stats tab:

sum(top(6, listPoints))

listPoints is a list of the points a player earned in each tournament. top(6, listPoints) will take the best/highest 6 of those, and sum() will give the sum of them.  Of course you can tailor this if you want something other than the sum of points.
Title: Re: League reporting
Post by: Bixby on April 11, 2017, 03:14:07 PM
Thank you!!!