Author Topic: League reporting  (Read 669 times)

Bixby

  • Newbie
  • *
  • Posts: 45
  • Guinness is Goodness
    • View Profile
League reporting
« 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?
My KARMA ran over your DOGMA

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: League reporting
« Reply #1 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.

Bixby

  • Newbie
  • *
  • Posts: 45
  • Guinness is Goodness
    • View Profile
Re: League reporting
« Reply #2 on: April 11, 2017, 03:14:07 PM »
Thank you!!!
My KARMA ran over your DOGMA