Before I continue, let me clarify that I cannot upload the actual spreadsheet because it contains sensitive information.
I use a spreadsheet to track information from sporting events and determine the House and age champions.
The spreadsheet's columns F, K, L, and N are for gender, name, age, and score. To create champions in each age and gender category, I use the algorithm below (eg 12-year-old female, 12-year-old male, 13-year-old female, etc)
=INDEX($K$2:$K$1000,MATCH(MAXIFS($N$2:$N$1000,$F$2:$F$1000,"F",$L$2:$L$1000,"12"),$N$2:$N$1000,0))
where the "12" changes to the various age groups and the "F" becomes an "M."
The formula gives the right answers for "F" "12," "16," and "17," but the wrong answers for "F" "13," "14," and "15." And for the men's age champions, a similar mix. The inaccurate result's "name" is the wrong age and gender.
I've tried a lot of different "solutions," such as text/number substitutes and various formulas, but the wrong outcome keeps happening.
I would be very grateful for any assistance.