CatCatJake
New Member
I'm using an excel sheet to choose highest grades from a range of qualifications using the Large function to fill assessment slots. The first, second and third highest grades are chosen from a fairly limited group that will stay constant for all students.
=IF(ISERROR(LARGE($J$4:$N$4,1)),"blank", LARGE($J$4:$N$4,1)) for the first slot picks the highest
=IF(ISERROR(LARGE($J$4:$N$4,2)),"blank", LARGE($J$4:$N$4,2)) for the second slot picks the next highest
and =IF(LARGE($J$4:$N$4,3)= 0,LARGE($O$4:$S$4,1),LARGE($J$4:$N$4,3)) for the third slot picks the third highest unless there is no third highest and then it moves on to the next group of qualifications that are available but not constant for all students.
at this point it gets tricky as each time I pick a value using large I cannot use that qualification result again
Can anyone help
CatCatJake
=IF(ISERROR(LARGE($J$4:$N$4,1)),"blank", LARGE($J$4:$N$4,1)) for the first slot picks the highest
=IF(ISERROR(LARGE($J$4:$N$4,2)),"blank", LARGE($J$4:$N$4,2)) for the second slot picks the next highest
and =IF(LARGE($J$4:$N$4,3)= 0,LARGE($O$4:$S$4,1),LARGE($J$4:$N$4,3)) for the third slot picks the third highest unless there is no third highest and then it moves on to the next group of qualifications that are available but not constant for all students.
at this point it gets tricky as each time I pick a value using large I cannot use that qualification result again
Can anyone help
CatCatJake