Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
sum(a3:j3)-min(a3:j3)
I know how to not factor in the least number from a string (as shown above) but how do I change the formula to not consider the 2 least values? I am using Excel 2000 Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUM(A3:J3)-SMALL(A3:J3,1)-SMALL(A3:J3,2)
-- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Rynefan" wrote in message ... sum(a3:j3)-min(a3:j3) I know how to not factor in the least number from a string (as shown above) but how do I change the formula to not consider the 2 least values? I am using Excel 2000 Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try something like this:
=SUM(A1:A10)-SUM(SMALL(A1:A10,{1,2})) Does that help? *********** Regards, Ron XL2002, WinXP "Rynefan" wrote: sum(a3:j3)-min(a3:j3) I know how to not factor in the least number from a string (as shown above) but how do I change the formula to not consider the 2 least values? I am using Excel 2000 Thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm sure there are shorter methods but this one works.
=SUM(A3:J3)-SUM(SMALL(A3:J3,{1,2})) Gord Dibben MS Excel MVP On Mon, 9 Apr 2007 15:28:00 -0700, Rynefan wrote: sum(a3:j3)-min(a3:j3) I know how to not factor in the least number from a string (as shown above) but how do I change the formula to not consider the 2 least values? I am using Excel 2000 Thanks |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Interesting variation of the formula I posted:
=SUM(A1:A10,-SMALL(A1:A10,{1,2})) *********** Regards, Ron XL2002, WinXP "Ron Coderre" wrote: Try something like this: =SUM(A1:A10)-SUM(SMALL(A1:A10,{1,2})) Does that help? *********** Regards, Ron XL2002, WinXP "Rynefan" wrote: sum(a3:j3)-min(a3:j3) I know how to not factor in the least number from a string (as shown above) but how do I change the formula to not consider the 2 least values? I am using Excel 2000 Thanks |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I tried them and they all work.
Thanks everyone. I love this site. "Gord Dibben" wrote: I'm sure there are shorter methods but this one works. =SUM(A3:J3)-SUM(SMALL(A3:J3,{1,2})) Gord Dibben MS Excel MVP On Mon, 9 Apr 2007 15:28:00 -0700, Rynefan wrote: sum(a3:j3)-min(a3:j3) I know how to not factor in the least number from a string (as shown above) but how do I change the formula to not consider the 2 least values? I am using Excel 2000 Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Average of lowest 5 of 20 values? | Excel Worksheet Functions | |||
taking out lowest 2 values | Excel Worksheet Functions | |||
How can I identify the two lowest values in a row? | Excel Worksheet Functions | |||
... Count, <<< Positive Values minus Negative Values >>> ... | Excel Worksheet Functions | |||
Average of an array of entries, minus the lowest entry | Excel Worksheet Functions |