Forum Discussion
marculos
8 years agoRegular Visitor
Count of True / False
Hi, I am struggling trying to get count of true/false to work. I have tried several different methods. So I have e.g User Acquired a ...
- 8 years ago
Hi marculos,
1. First make sure the data type of Acquired column is set to Text
2. Use the below measure to get the desired result.
Measure = CALCULATE ( DISTINCTCOUNT ( Table1[User] ), FILTER ( Table1, Table1[Acquired] = "True" ) )
Regards,
Prateek Raina
prateekraina
Memorable Member
8 years agoHi marculos,
1. First make sure the data type of Acquired column is set to Text
2. Use the below measure to get the desired result.
Measure =
CALCULATE (
DISTINCTCOUNT ( Table1[User] ),
FILTER (
Table1,
Table1[Acquired] = "True"
)
)
Regards,
Prateek Raina
Netjacker65
5 years agoFrequent Visitor
works great for me thanks bud. 😄