I am a golfer and am organising a competition. I want to formulate a cell on
a spread sheet that will give me the best 9 weeks scores from 12 weeks.
anone any ideas?
Do you really want 9 scores in one cell?
Or do you want the SUM of the best 9 scores in a cell?
Is a score a number, like 5 or 8, or is it text like "Pretty good" or
"Very bad"?
You may get the result you ask for quicker if you give some
information about your problem that is not obvious for everyone.
Having said that, if I may assume that the twelve scores are positive
numbers, one score in each of the cells A1,A2,...,A12 and that a
higher score is better than a lower score, you may try this formula:
=SUMPRODUCT(A1:A12,0+((100*(A1:A12)+ROW(A1:A12))>=LARGE(100*(A1:A12)+ROW(A1:A12),9)))
This will give the sum of the nine highest numbers in cells A1:A12.
If any of my assumtions are not correct, please give more information.
Hope this helps / Lars-Åke