Author Topic: Top X scores not working  (Read 1235 times)

famous58

  • Newbie
  • *
  • Posts: 19
    • View Profile
Top X scores not working
« on: April 16, 2022, 05:25:02 PM »
I want to drop the lowest score for each player. So far we've played two tournaments so I have the following set for Overall Scores formula:

Code: [Select]
sum(top(1, scores))
First place only played one game and received 118.43 points for playing. However, when I run stats his Overall Score is 109.43 (see attached screenshot). Points and Overall Score should match.

What am I doing wrong?
« Last Edit: April 16, 2022, 05:33:31 PM by famous58 »

famous58

  • Newbie
  • *
  • Posts: 19
    • View Profile
Re: Top X scores not working
« Reply #1 on: April 16, 2022, 05:47:46 PM »
For more info, my formula for points is as follows:

Code: [Select]
((1 - (r / n)) * 100 + 5) - (rebuys * 3.00) - (addOns * 1.00) + (numberOfHits * 1)
When I test this formula for the player who came in first, the result is 109.43; the same that is showing for his Overall Score. So it looks like the part of this that is wrong are the points being given for a single tournament.

famous58

  • Newbie
  • *
  • Posts: 19
    • View Profile
Re: Top X scores not working
« Reply #2 on: April 16, 2022, 05:52:22 PM »
Figured it out. I had Points for Hit on the Game screen set to 1. This was adding points in addition to my formula. Set it to zero and everything is as it should be now.