Forum Discussion
Darrell_Hensley
Jun 16, 2022Copper Contributor
Count the occurrence of 3's and 4's in a column with hidden rows
In excel if you want to count the occurrence of two numbers in a column you can use: =COUNTIF(Table13[Amada],3)+COUNTIF(Table13[Amada],4) and that will return the number of times that the dig...
- Jun 16, 2022
If you have access to LAMBDA:
=COUNT(IF(SCAN(,Table13[Amada],LAMBDA(a,b,IF(SUBTOTAL(102,b)>0,b,0)))={3,4},1))
Patrick2788
Jun 16, 2022Silver Contributor
If you have access to LAMBDA:
=COUNT(IF(SCAN(,Table13[Amada],LAMBDA(a,b,IF(SUBTOTAL(102,b)>0,b,0)))={3,4},1))
- Darrell_HensleyJun 17, 2022Copper ContributorThis works great,
Thank you!