The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
I'm working as a TA and it's the end of term, so this means happy fun time with grade calculation. What I have now is an Excel file of the student's assignment scores. The professor wants me to drop each student's lowest score, then average the rest. As I am in charge of roughly 180 students, I really do not want to do this by hand.
Is there a function that could automate this process? I've taken a cursory look through the list, but nothing seemed promising.
Posts
=(SUM(range)-MIN(range))/(COUNT(range)-1)
=(SUM([range])-MIN([range]))/(COUNT([range])-1)
Edit: beat, but confired