Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ok The SUM for each row is easy, How do I get each row to drop the lowest
value for the SUM, |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Damar,
=SUM(A1:F1)-MIN(A1:F1) NickHK "Damar" ... Ok The SUM for each row is easy, How do I get each row to drop the lowest value for the SUM, |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If the actual question if more like the title and you want to exclude the 4
lowest values then... =SUM(A1:A10)-SMALL(A1:A10, 1)-SMALL(A1:A10, 2)-SMALL(A1:A10, 3)-SMALL(A1:A10, 4) -- HTH... Jim Thomlinson "NickHK" wrote: Damar, =SUM(A1:F1)-MIN(A1:F1) NickHK "Damar" ... Ok The SUM for each row is easy, How do I get each row to drop the lowest value for the SUM, |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Jim,
Ahh, missed the 4 aspect. Thought it was too easy. NickHK "Jim Thomlinson" ... If the actual question if more like the title and you want to exclude the 4 lowest values then... =SUM(A1:A10)-SMALL(A1:A10, 1)-SMALL(A1:A10, 2)-SMALL(A1:A10, 3)-SMALL(A1:A10, 4) -- HTH... Jim Thomlinson "NickHK" wrote: Damar, =SUM(A1:F1)-MIN(A1:F1) NickHK "Damar" ... Ok The SUM for each row is easy, How do I get each row to drop the lowest value for the SUM, |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=sum(A1:A10)-SUM(SMALL(A1:A10,{1,2,3,4}))
entered normally might be more enticing and is functionally equivalent. -- Regards, Tom Ogilvy "Jim Thomlinson" wrote: If the actual question if more like the title and you want to exclude the 4 lowest values then... =SUM(A1:A10)-SMALL(A1:A10, 1)-SMALL(A1:A10, 2)-SMALL(A1:A10, 3)-SMALL(A1:A10, 4) -- HTH... Jim Thomlinson "NickHK" wrote: Damar, =SUM(A1:F1)-MIN(A1:F1) NickHK "Damar" ... Ok The SUM for each row is easy, How do I get each row to drop the lowest value for the SUM, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Subtotaling minus negative numbers and posative numbers | Excel Worksheet Functions | |||
a sum of #'s minus the lowest two values | Excel Discussion (Misc queries) | |||
col of minus numbers changed to plus numbers | Excel Worksheet Functions | |||
How do I change minus numbers to + numbers in a col in Excel? | Charts and Charting in Excel | |||
Average of an array of entries, minus the lowest entry | Excel Worksheet Functions |