Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello-
I need to take 5 numbers (each in separate cells) (they could be the same), drop the highest and lowest and then add the remaining 3. Can you help me? 5.5 4.5 4 3 5.5 ===== drop the 5.5 and 3 add the 4.5 + 3 + 5.5 total = 13 Thank you |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=SUM(A1:A5,-MAX(A1:A5),-MIN(A1:A5)) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "DTTODGG" wrote in message ... Hello- I need to take 5 numbers (each in separate cells) (they could be the same), drop the highest and lowest and then add the remaining 3. Can you help me? 5.5 4.5 4 3 5.5 ===== drop the 5.5 and 3 add the 4.5 + 3 + 5.5 total = 13 Thank you |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Another option might be:
=3*TRIMMEAN(A1:A5,2/5) where you are dropping 2 of the 5 (ie 2/5) -- HTH. :) Dana DeLouis Windows XP, Office 2003 "DTTODGG" wrote in message ... Hello- I need to take 5 numbers (each in separate cells) (they could be the same), drop the highest and lowest and then add the remaining 3. Can you help me? 5.5 4.5 4 3 5.5 ===== drop the 5.5 and 3 add the 4.5 + 3 + 5.5 total = 13 Thank you |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Another way that seems to do what you want.
=SUM(LARGE(A1:A5,{2,3,4})) Returns 14 in your example. You give 13 as the correct sum, however you say to drop the 5.5 and the 3 and then you added the 3 in your example. Probably just a typo?? HTH Regards, Howard "DTTODGG" wrote in message ... Hello- I need to take 5 numbers (each in separate cells) (they could be the same), drop the highest and lowest and then add the remaining 3. Can you help me? 5.5 4.5 4 3 5.5 ===== drop the 5.5 and 3 add the 4.5 + 3 + 5.5 total = 13 Thank you |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
OK - new twist,
now I have 7 scores and I need to drop the 2 highest and 2 lowest. Can you help? "L. Howard Kittle" wrote: Another way that seems to do what you want. =SUM(LARGE(A1:A5,{2,3,4})) Returns 14 in your example. You give 13 as the correct sum, however you say to drop the 5.5 and the 3 and then you added the 3 in your example. Probably just a typo?? HTH Regards, Howard "DTTODGG" wrote in message ... Hello- I need to take 5 numbers (each in separate cells) (they could be the same), drop the highest and lowest and then add the remaining 3. Can you help me? 5.5 4.5 4 3 5.5 ===== drop the 5.5 and 3 add the 4.5 + 3 + 5.5 total = 13 Thank you |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
just adapt to what you already have
=SUM(LARGE(A1:A7,{3,4,5})) -- Regards, Peo Sjoblom Portland, Oregon "DTTODGG" wrote in message ... OK - new twist, now I have 7 scores and I need to drop the 2 highest and 2 lowest. Can you help? "L. Howard Kittle" wrote: Another way that seems to do what you want. =SUM(LARGE(A1:A5,{2,3,4})) Returns 14 in your example. You give 13 as the correct sum, however you say to drop the 5.5 and the 3 and then you added the 3 in your example. Probably just a typo?? HTH Regards, Howard "DTTODGG" wrote in message ... Hello- I need to take 5 numbers (each in separate cells) (they could be the same), drop the highest and lowest and then add the remaining 3. Can you help me? 5.5 4.5 4 3 5.5 ===== drop the 5.5 and 3 add the 4.5 + 3 + 5.5 total = 13 Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|