Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Re: Simple point system

357 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Romer
4 - Data Explorer
4 - Data Explorer

Hello, hope you are all doing well. 

Need some help giving points to each participant per race result, would like to create a field on the same table with a formula that does that automatically. 

The point system is basically the reverse order of the number of participants, ea: 1st place gets the total number of participants in points, the 2nd place gets one less, and so on, with last place getting 1 point

Here is the condition, only the "Pos" with numbers will get assign the points. Positions that have a DNF or DNS will get just 1 point

Here is the table: 

Romer_0-1731825964676.png

Any help will be grateful, my brain is toast for the night, trying all kinds of ways.

This might be super simple for someone out there ðŸ˜†

Thank you!

3 Replies 3

Hm so there are multiple races, right?  If so, I think you're going to need:
1. Races: table where each record represents one race
2. People: table where each record represents one person

Let's call your main table "Data"

You'd then link everything up accordingly, which would allow you to create a Count field in the Races table that'll give you the total number of participants for that race.  You could then use a lookup to pull that Count field into the Data table, and you'd use a formula that would help you output the points for each person based on:
1. Their position in the race
2. The total number of participants in that race

Once you output those points, you can create a rollup field in People on that new points field, which would give you each persons total from all their races

Alexey_Gusev
13 - Mars
13 - Mars

Hi,
Is it correct that number of participants 11 here? And Pos1 gets 11 pts, Pos2=10 pts, Pos#6 gets 6 points, the rest (Pos 7-11) are 1 pts. 

Your formula will be 

 

1+IF(VALUE(Pos),11-VALUE(Pos))

 

if you have different total number each race, to count total, you need to link and do the stuff according to @TheTimeSavingCo  instructions

Romer
4 - Data Explorer
4 - Data Explorer

Thank you guys, will get working on this ðŸ˜€@Alexey_Gusev already applied that formula, thank you man. @TheTimeSavingCo  will work on those tables tonight. Thank you all again