Hi John, you might laugh at this but I have a formula that I don't fully understand, but it works.
To find the average of a column of figures obviously you would use the AVERAGE function.
But you don't want the average of all the numbers, just the lowest 500.
That's where the SMALL function comes in. With the small function you can find the smallest number, 2nd smallest, 10th smallest and so on in an array.
SMALL(*your array or data set goes here*,x) The 'x' in the formula here extracts the 'x'th smallest value in the data, so if the 'x' value is 12 then the formula returns the 12th smallest value in the data.
Now this is where I get lost and confused because I can't fully comprehend the INDIRECT function.
SMALL(*your scores array goes here*,ROW(INDIRECT("1:500")))
Now I suppose the INDIRECT("1:500") function here must give the ROW function, (which takes the place of the 'x' value in the SMALL function explanation example above), the values 1 through to 500 so that the SMALL function can extract the 500 smallest values from your scores array but I'm a little confused about that so I won't say anymore.
So now that we have the 500 smallest values, we can tack the AVERAGE function onto the front
AVERAGE(SMALL(*your scores array goes here*,ROW(INDIRECT("1:500"))))
I am a little worried that as you have less than 500 scores John this won't work. So you could try changing the top value in the INDIRECT function to match the maximum number of scores you have and then increase by one as you add each score until you get to 500, or you could extend your score column to 500 and have 190 or so empty cells ready for your upcoming scores.
One final thing to note is the formula should look like this in the formula bar...
{=AVERAGE(SMALL(*your scores array goes here*,ROW(INDIRECT("1:500"))))}
...notice that there are curly brackets around the formula, this is because the formula is working with an array, and as such has to be entered using the CTRL + SHIFT + ENTER key combination. You don't add the curly brackets to the actual formula, they appear when you enter the formula with that key combo, if they're not there, the formula won't work correctly.
As I said John I don't fully understand how it works, so I might not be able to help you out if it doesn't work, but I will try to assist if I can.
(PS. EasyEdward and DaddysKat are both very clever, perhaps they can help too).