Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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])
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |