G Guest Nov 5, 2003 #1 How can I drop the lowest score of a group of scores (from tests), then get the average for the rest?
How can I drop the lowest score of a group of scores (from tests), then get the average for the rest?
P Peo Sjoblom Nov 5, 2003 #2 One way =SUMPRODUCT((SMALL($A$1:$A$50,ROW(INDIRECT("2:"&COUNT($A$1:$A$50))))))/(COUN T($A$1:$A$50)-1) -- Regards, Peo Sjoblom John said: How can I drop the lowest score of a group of scores (from tests), then Click to expand... get the average for the rest?
One way =SUMPRODUCT((SMALL($A$1:$A$50,ROW(INDIRECT("2:"&COUNT($A$1:$A$50))))))/(COUN T($A$1:$A$50)-1) -- Regards, Peo Sjoblom John said: How can I drop the lowest score of a group of scores (from tests), then Click to expand... get the average for the rest?
P Peo Sjoblom Nov 5, 2003 #3 =SUMPRODUCT((SMALL($A$1:$A$50,ROW(INDIRECT("2:"&COUNT($A$1:$A$50))))))/(COUN T($A$1:$A$50)-1) or maybe =(SUM($A$1:$A$50)-MIN($A$1:$A$50))/(COUNT($A$1:$A$50)-1) or =AVERAGE(SMALL($A$1:$A$50,ROW(INDIRECT("2:"&COUNT($A$1:$A$50))))) the last entered with ctrl + shift & enter -- Regards, Peo Sjoblom John said: How can I drop the lowest score of a group of scores (from tests), then Click to expand... get the average for the rest?
=SUMPRODUCT((SMALL($A$1:$A$50,ROW(INDIRECT("2:"&COUNT($A$1:$A$50))))))/(COUN T($A$1:$A$50)-1) or maybe =(SUM($A$1:$A$50)-MIN($A$1:$A$50))/(COUNT($A$1:$A$50)-1) or =AVERAGE(SMALL($A$1:$A$50,ROW(INDIRECT("2:"&COUNT($A$1:$A$50))))) the last entered with ctrl + shift & enter -- Regards, Peo Sjoblom John said: How can I drop the lowest score of a group of scores (from tests), then Click to expand... get the average for the rest?
D dvt Nov 5, 2003 #4 How can I drop the lowest score of a group of scores (from tests), then get the average for the rest? Click to expand... Assuming test scores in column A, =(SUM(A:A) - MIN(A:A))/(COUNT(A:A) - 1) (total of the scores minus the lowest score divided by the number of scores less one)
How can I drop the lowest score of a group of scores (from tests), then get the average for the rest? Click to expand... Assuming test scores in column A, =(SUM(A:A) - MIN(A:A))/(COUNT(A:A) - 1) (total of the scores minus the lowest score divided by the number of scores less one)