Dec 13 2022 08:11 AM
33
33
30
29
15
12
i want to total number occurrences below 32 how to calculate include repeted numbers
Dec 13 2022 08:22 AM
You would use countif function, the following formula will count the cell in the range A1:A5 that its value less than 32.
=COUNTIF(A1:A5,"<32")
Dec 13 2022 08:35 AM
SolutionDec 13 2022 08:48 AM
Let's say the numbers are in A1:A10. You could use:
=LET(a,A1:A10,filtered,FILTER(a,a<32),COUNT(UNIQUE(filtered)))
Dec 13 2022 12:16 PM