The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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'
many thanks
Solved! Go to Solution.
Measure :=
CALCULATE (
COUNTROWS ( Calcul ),
FILTER ( VALUES ( Calcul[delai] ), Calcul[delai] = 0 )
)
Measure :=
CALCULATE (
COUNTROWS ( Calcul ),
FILTER ( VALUES ( Calcul[delai] ), Calcul[delai] = 0 )
)
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
28 | |
18 | |
12 | |
7 | |
5 |