Hi,
I need for this formula to count only positive numbers - AF10:AF10 being the column with numbers in of course.PHP Code:=SUMIFS(AF10:AF2000,U10:U2000,U1,AP10:AP2000,U5)
and also separately negative numbers
Any help much appreciated
thanks
Jon
Printable View
Hi,
I need for this formula to count only positive numbers - AF10:AF10 being the column with numbers in of course.PHP Code:=SUMIFS(AF10:AF2000,U10:U2000,U1,AP10:AP2000,U5)
and also separately negative numbers
Any help much appreciated
thanks
Jon
What do you want to do, SUM or COUNT?
Try
andPHP Code:=SUMIFS(AF10:AF2000,U10:U2000,U1,AP10:AP2000,U5,AF10:AF2000,">0")
PHP Code:=SUMIFS(AF10:AF2000,U10:U2000,U1,AP10:AP2000,U5,AF10:AF2000,"<0")