Forum Discussion
Anonymous
3 years agoNot applicable
countrows counting false and null
hi i am new to power BI i have the following measure
Cal Motor Fails = COUNTROWS(FILTER(PA1302, PA1302[Calibrate Motor]=FALSE()))
i want to count the number of "falses" in the "Calibrate Motor" column. the problem is that the above measure counts FALSEs and null together.
i want to separate them.
thanks in advance
Loay
Hi Anonymous ,
use 'Table'[Calibrate Motor] == FALSE(), instead of 'Table'[Calibrate Motor] = FALSE()
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- mangaus1111Solution Sage
Hi Anonymous ,
use 'Table'[Calibrate Motor] == FALSE(), instead of 'Table'[Calibrate Motor] = FALSE()
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- AnonymousNot applicable