Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
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])
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 21 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 59 | |
| 52 | |
| 41 | |
| 33 | |
| 32 |