Forum Discussion
ali70
5 years agoFrequent Visitor
COUNT
Hello guys , I have a column in which data is between -600 and 2000 , all i want to do is count how many 0 were recorded in this field, any ideas ? Hint Table name 'Calcul' column name 'delai' ...
- 5 years ago
Measure := CALCULATE ( COUNTROWS ( Calcul ), FILTER ( VALUES ( Calcul[delai] ), Calcul[delai] = 0 ) )
smpa01
Community Champion
5 years agoMeasure :=
CALCULATE (
COUNTROWS ( Calcul ),
FILTER ( VALUES ( Calcul[delai] ), Calcul[delai] = 0 )
)