Forum Discussion
LostnFound
4 years agoNew Member
Count and Filtering TRUE and FALSE
Hello, I'm new to Power BI and I have a single table that shows products with their status in a number of columns as either TRUE or FALSE. I'm looking to count the number of products that are under I...
- Anonymous4 years ago
hi LostnFound
Try this measure
#Inpection =CALCULATE (COUNTROWS ( 'Stock_Daybook' ),AND (Stock_Daybook[UnderRepair]= FALSE (),Stock_Daybook[UnderInspection]= TRUE ()))If this post helps, Accept it as a solution.
Anonymous
4 years agoNot applicable
hi LostnFound
Try this measure
#Inpection =
CALCULATE (
COUNTROWS ( 'Stock_Daybook' ),
AND (
Stock_Daybook[UnderRepair]
= FALSE (),
Stock_Daybook[UnderInspection]
= TRUE ()
)
)
If this post helps, Accept it as a solution.