Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello All,
I created 3 measures as mentioned below
1. MissingSchemedesign = If(calculate(count(Merge1[Id]),Merge1[Items.Level-2]="Scheme design")=0,1,0)
2. MissingDrawings = If(calculate (count(Merge1[Id]),Merge1[Items.Level-2]="Drawings")=0,1,0)
Now I want to display sum of the count seprately, not in this table, so I create formula as mentioned below, but it always display One (1)
Solved! Go to Solution.
try writing like this
TotalCount =
SUMX(
VALUES('table'[Machine No]),
[MissingSchemedesign]+[MissingDrawings]+[MissingRisk])
Thanks It is working
However column headers are displaying empty.
I also dont want to display those measures where is count is zero.
Thanks Ahmedx, it works.
One more question, I want to display data in following format using measure field. I tried in Table and Matrix, but no luck. Any other format I am missing
Missing | Count |
Missingschemedesign | 1 |
Missing Drawing | 0 |
Missing Risk | 1 |
Total | 2 |
try writing like this
TotalCount =
SUMX(
VALUES('table'[Machine No]),
[MissingSchemedesign]+[MissingDrawings]+[MissingRisk])
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
68 | |
64 | |
51 | |
39 | |
26 |
User | Count |
---|---|
84 | |
57 | |
45 | |
44 | |
36 |