Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi Everyone,
I would really appreciate anyones help with my situation.
Below is a table im working on
I am trying to count how many 'trues' and 'falses' there are for each CP_ID. I then want to find the percentage of 'trues' from the total of both 'trues' and 'falses'.
I have tried this but get an error explaining I cant count boolean values.
Solved! Go to Solution.
Try
NumberHits = CALCULATE(COUNT(name[CP_ID]), name[WIN_FLAG]=TRUE()) NumberMisses = CALCULATE(COUNT(name[CP_ID]), name[WIN_FLAG]=FALSE())
You can count CP_ID if both do not have any null values (nonoverlapping).
Good idea, Counting the CP will give me the total of both true and false. How can I then split this and find the number for each true and false?
Try
NumberHits = CALCULATE(COUNT(name[CP_ID]), name[WIN_FLAG]=TRUE()) NumberMisses = CALCULATE(COUNT(name[CP_ID]), name[WIN_FLAG]=FALSE())
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
102 | |
99 | |
38 | |
37 |
User | Count |
---|---|
158 | |
125 | |
76 | |
74 | |
63 |