Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm trying to come up with a formula that will let me add all but the lowest
two values in a series (row) of numbers. I can add all but the lowest by using the MIN function to find the lowest value (and then subtract it from the sum of all the values), but I can't figure out how to find the second lowest value. Any help would be appreciated. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming your data is in J12:J16
=SUM(SUM(J12:J16),-SMALL(J12:J16,1),-SMALL(J12:J16,2)) -- ** John C ** Please remember if your question is answered, to mark it answered :). It helps everyone. "JAIrvin" wrote: I'm trying to come up with a formula that will let me add all but the lowest two values in a series (row) of numbers. I can add all but the lowest by using the MIN function to find the lowest value (and then subtract it from the sum of all the values), but I can't figure out how to find the second lowest value. Any help would be appreciated. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUM(A:A)-SUM(SMALL(A:A,{1,2}))
"JAIrvin" wrote: I'm trying to come up with a formula that will let me add all but the lowest two values in a series (row) of numbers. I can add all but the lowest by using the MIN function to find the lowest value (and then subtract it from the sum of all the values), but I can't figure out how to find the second lowest value. Any help would be appreciated. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this - {=sum(F1:F12)-SUM(SMALL(F1:F12,{1;2}))}
Obviously substitute the F1:F12 for your range. This needs to be entered as an array by entering - Ctrl + Shft + Enter instead of just Enter once completed. To add more than just the 2 smallest you can add any number after 1;2 etc. Good luck Rick "JAIrvin" wrote: I'm trying to come up with a formula that will let me add all but the lowest two values in a series (row) of numbers. I can add all but the lowest by using the MIN function to find the lowest value (and then subtract it from the sum of all the values), but I can't figure out how to find the second lowest value. Any help would be appreciated. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You don't need Ctrl+shift+Enter, just press Enter
"Rick" wrote: Try this - {=sum(F1:F12)-SUM(SMALL(F1:F12,{1;2}))} Obviously substitute the F1:F12 for your range. This needs to be entered as an array by entering - Ctrl + Shft + Enter instead of just Enter once completed. To add more than just the 2 smallest you can add any number after 1;2 etc. Good luck Rick "JAIrvin" wrote: I'm trying to come up with a formula that will let me add all but the lowest two values in a series (row) of numbers. I can add all but the lowest by using the MIN function to find the lowest value (and then subtract it from the sum of all the values), but I can't figure out how to find the second lowest value. Any help would be appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lowest two values | Excel Worksheet Functions | |||
display lowest values | Excel Worksheet Functions | |||
taking out lowest 2 values | Excel Worksheet Functions | |||
Lowest numbers | Excel Discussion (Misc queries) | |||
how to subtract the very next LOWEST number | New Users to Excel |