G
glaskow4
Select the 3 lowest numbers out of a range, disregard any row with less than 3 and add the resulting 3 lowest number together.
Select the 3 lowest numbers out of a range, disregard any row with less than 3 and add the resulting 3 lowest number together.
=SUMIFS(A1:A1000,A1:A1000,">3",A1:A1000,"<="&SMALL(A1:A1000,COUNTIF(A1:A1000,"<=3")+3))
or
=SUMPRODUCT(--(A1:A1000>3),--(A1:A1000<=SMALL(A1:A1000,COUNTIF(A1:A1000,"<=3")+3)),A1:A1000)
Hi,
Am Sun, 31 Aug 2014 08:26:07 -0700 (PDT) schrieb (e-mail address removed):
try:
=SUMIFS(A1:A1000,A1:A1000,">3",A1:A1000,"<="&SMALL(A1:A1000,COUNTIF(A1:A1000,"<=3")+3))
or
=SUMPRODUCT(--(A1:A1000>3),--(A1:A1000<=SMALL(A1:A1000,COUNTIF(A1:A1000,"<=3")+3)),A1:A1000)
Regards
Claus B.
--
Vista Ultimate / Windows7
Office 2007 Ultimate / 2010 Professional
Select the 3 lowest numbers out of a range, disregard any row with less than 3 and add the resulting 3 lowest number together.
=SUM((LARGE((D3:H3),3)),(LARGE((D3:H3),2)),(LARGE((D3:H3),1)))
Hi,
Am Mon, 1 Sep 2014 11:24:42 -0700 (PDT) schrieb (e-mail address removed):
try:
=SUMIF(D3:H3,">="&LARGE(D3:H3,3))
Regards
Claus B.
--
Vista Ultimate / Windows7
Office 2007 Ultimate / 2010 Professional