1
I’m trying to count some data in the spreadsheet to make a statistic, however, it’s not working:
Input data, in cells of B1
to B6
4.75x
5.76x
1.66x
11.17x
20.76x
Result I want to get
<= 1.99x = 1
Greater than >1.99x and < 2.99x = 0
Greater than >2.99x and <> 3.99x = 0
Greater than > 4 = 4
Obs: I’m using the formulas in A8, A9, A10 e A11
=COUNTIF(A1:A5;"<1.99x")
=COUNTIF(A1:A5;"<2.99x")-A8
=COUNTIF(S1:A1:A5;">2.99x")-A11
=COUNTIF(A1:A5;">4.99x")
Who can help I thank.
It explains the input data better, and whatever comes back after the formula. From what is written, you are counting and not adding to check if you are in the condition, or would, assign a value to each statistic result as a rule?
– David
I want to count how many results is less than 1.99x, is between 2.00x and 2.99x, is between 3.00x and 3.99x and Mair than 4.00x
– Rodrigo Araujo
I want to count how many results is less than 1.99x, is between 2.00x and 2.99x, is between 3.00x and 3.99x and Mair than 4.00x. In the example above the results above 9.99 falls among the statistics less than 4....=(
– Rodrigo Araujo