G Guest Sep 29, 2006 #1 Ok The SUM for each row is easy, How do I get each row to drop the lowest value for the SUM,
G Guest Sep 29, 2006 #3 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)
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)
G Guest Sep 29, 2006 #5 =sum(A1:A10)-SUM(SMALL(A1:A10,{1,2,3,4})) entered normally might be more enticing and is functionally equivalent.
=sum(A1:A10)-SUM(SMALL(A1:A10,{1,2,3,4})) entered normally might be more enticing and is functionally equivalent.