I would like to create this custom formula to calculate a points awarding system that automatically calculates. P and A are the variables in the formula. Is this possible? P = event finishing...
Yeah, I was not much at math... so alot of the characters don't mean much to me... however...
The formula creates a point system for overall points for a sailboat racing season. The points awarded are dependent on the number of entries in the race, and the position of each boat in that race.
there is a graph that has the detail but I am trying to put the formula into excel for easier calculation...
...where the attendance (A) is in cell B1 and the fleet factor (φ) is in cell B2. The results would look something like this:
MAKEARRAY Chart with Conditional Formatting
Conditional Formatting was applied to range C5:V24 to shade the empty string results blue using the following formula:
=AND(NOT(ISBLANK(C5)), C5="")
You could also create a custom LAMBDA function in Name Manager to award points to each team based on their finishing position for each race. For example, you could create a function called XPOINTS using the following formula:
pevenden as per the new information provided by JoeUser2004 regarding "the system includes your best five regatta finishes", the formula to generate Season Standings in my above response can be modified to sum the results of each team's best 5 finishes as follows:
=LET(
u, UNIQUE(C4:C20),
a, BYROW(u, LAMBDA(r, SUM(TAKE(SORT(FILTER(D4:D20, C4:C20=r)), -5)))),
HSTACK(SEQUENCE(ROWS(u)), SORT(HSTACK(u, a), 2, -1)))
Thanks all. I have Office Professional Plus 2019 ! am not worried about the 'top 5 finishes', I am using this for a different sport 'Horse competition' where each 'class' can have anywhere from 3 to 15 riders. the 'class' competes 6-8 times per season, and the number of riders vary each time. The season points will include all events. Also, I am not worried about a 'fleet factor' djclements if I alter B2 to a different number instead of 20, say 10, all i get is this: #NAME? in all the cells...