Hi,
I am writing code to find the average of each players highest 3 scores (and they must have 3 scores minimum),
So if the database says
James 50
Emma 30
James 60
Emma 40
Darren 45
James 40
Darren 55
James 25
Darren 35
Then I would like to find the highest averages of the top three scores; so James would be 50+60+40 (only highest 3 scores) = 50 and Darren would be 45+55+35=45 while Emma would not be included because she only has two scores.
James