0

I have the following numbers 12,34,-15,-23,-5,45,-50 and would like to find the count of numbers where the abs(x)>=15, which in this case is 5 Is this possible with the use of COUNTIFS ?

JvdV
  • 70,606
  • 8
  • 39
  • 70
yathrakaaran
  • 179
  • 1
  • 3
  • 15

1 Answers1

4

Based on the inputs, following formulas can be used

=SUMPRODUCT((ABS(A2:A8)>=15)+0)

and COUNTIFS implementation would be as below

=COUNTIFS(A2:A8,">=15")+COUNTIFS(A2:A8,"<=-15")

=SUM(COUNTIFS(A2:A8,{">=15","<=-15"}))

As COUNTIFS requires range as input and therefore any math operation is not possible!

shrivallabha.redij
  • 5,832
  • 1
  • 12
  • 27