Sep 15, 2008 #1 Cozmo2 Technical User Apr 7, 2006 87 US I need to find the average of a range of numbers after elimating the highest and lowest numbers. Any ideas? Thanks
I need to find the average of a range of numbers after elimating the highest and lowest numbers. Any ideas? Thanks
Sep 15, 2008 #2 bluedragon2 IS-IT--Management Jan 24, 2003 2,642 US (SUM(range)-MAX(range)-MIN(range))/COUNT(range) [Blue]Blue[/Blue] [Dragon] If I wasn't Blue, I would just be a Dragon... Upvote 0 Downvote
(SUM(range)-MAX(range)-MIN(range))/COUNT(range) [Blue]Blue[/Blue] [Dragon] If I wasn't Blue, I would just be a Dragon...
Sep 15, 2008 #3 bluedragon2 IS-IT--Management Jan 24, 2003 2,642 US opps: (SUM(range)-MAX(range)-MIN(range))/(COUNT(range)-2) [Blue]Blue[/Blue] [Dragon] If I wasn't Blue, I would just be a Dragon... Upvote 0 Downvote
opps: (SUM(range)-MAX(range)-MIN(range))/(COUNT(range)-2) [Blue]Blue[/Blue] [Dragon] If I wasn't Blue, I would just be a Dragon...
Sep 15, 2008 #4 fneily Instructor Apr 5, 2002 2,538 US =SUM(Testrange)-LARGE(Testrange,1)-SMALL(Testrange,1)/(COUNT(Testrange)-2) Testrange is the name of the range of your numbers. Upvote 0 Downvote
=SUM(Testrange)-LARGE(Testrange,1)-SMALL(Testrange,1)/(COUNT(Testrange)-2) Testrange is the name of the range of your numbers.
Sep 15, 2008 #5 M mintjulep Technical User Aug 20, 2004 1,551 JP =(SUM(A1:A5)-MAX(A1:A5)-MIN(A1:A5))/(COUNT(A1:A5)-2) Upvote 0 Downvote
Sep 15, 2008 Thread starter #6 Cozmo2 Technical User Apr 7, 2006 87 US Thank-you, you make it look so easy! Upvote 0 Downvote