Author Topic: Formula help  (Read 2310 times)

slowhand

  • Newbie
  • *
  • Posts: 2
    • View Profile
Formula help
« on: September 16, 2009, 07:40:34 PM »
I'm new to the Tournament Director and am setting up a home league for the first time.  I would like to award bonus points depending on the number of players in each tournament.  I would like to award bonus points to the first 3 players in a 10 or less tournament, probably 1st-8, 2nd 6, 3rd 3 and for tournaments of 11 or more the top 6 will receive bonus points probably 1st 10, 2nd 8, 3rd 6, 4th 3, 5th 2, and 6th 1.

I can set a formula covering one or the other but need help, if possible to do both. ;D

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Formula help
« Reply #1 on: September 18, 2009, 09:24:08 AM »
if(n < 11, switch(r, 1, 8, 2, 6, 3, 3), switch(r, 1, 10, 2, 8, 3, 6, 4, 3, 5, 2, 6, 1))

slowhand

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: Formula help
« Reply #2 on: September 18, 2009, 10:27:03 AM »
Thanks works like a champ. :) :) :) :)