Author Topic: Help With Stats  (Read 900 times)

rafatins

  • Newbie
  • *
  • Posts: 20
    • View Profile
Help With Stats
« on: January 10, 2016, 08:16:40 PM »
Please I need help. I have a league with 44 games already played and saved. The formula "points for playing" in every game was n - r + 1, and the formula in tournament scores in stats profile was "points".

But I need now that the formula for calculating the points is: switch (r, 1,25,2,18,3,15,4,12,5,10,6,8,7,6,8,4,9,2 ,1). I put that formula in tournament scores and overall scores, it also calculates the points by the formula n - r + 1.

Must calculate the league points already down the formula switch (r, 1,25,2,18,3,15,4,12,5,10,6,8,7,6,8,4,9,2 , 1. what to do?

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6220
    • View Profile
Re: Help With Stats
« Reply #1 on: January 11, 2016, 01:04:34 PM »
It sounds like you have the right idea.  Since it would be a bit cumbersome and tedious to update the "Points for Playing" formula in all of those tournaments, it will be easier to simply use the intended formula in the Tournament Scores formula of your Stats Profile.  For your Overall Scores formula, you probably just need to use:

sum(scores)

rafatins

  • Newbie
  • *
  • Posts: 20
    • View Profile
Re: Help With Stats
« Reply #2 on: January 11, 2016, 02:34:38 PM »
It worked perfectly , I was just missing the sum ( scores ) . Thank you so much.