This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello, I have a seemingly very simple problem but I'm having trouble creating DAX for it. I have the following table:
| ID | Color | Value |
| 101 | Red | a |
| 101 | Green | |
| 101 | Blue | b |
| 102 | Red | a |
| 102 | Green | b |
| 102 | Blue | c |
| 103 | Red | |
| 103 | Green | |
| 103 | Blue | |
| 104 | Red | |
| 104 | Green | a |
| 104 | Blue | |
| 105 | Red | |
| 105 | Green | |
| 105 | Blue |
All I want to count in this table are ID's where the ALL values are blank for the color categories. In this case, my answer is 2 because only 103 and 105 satisfy the condition. I was trying to do this:
CALCULATE(
DISTINCTCOUNT(Table[ID],
SUMMARIZE(Table, Table[ID], "criteria",
COUNT(Table[Value])>1
)
)
But its summarizing all counts for ID. Any help is appreciated. Thanks.
Solved! Go to Solution.
I feel like there should be a much more elegant way to get this result, but I was able to get it with this:
GroupBlankCount = COUNTROWS( FILTER(SUMMARIZE(Table2, Table2[ID], "Values", MAX(Table2[Value])), [Values]=""))
Hi @RustyNails check this way:
new table:
regards
Hello, it didn't work 😞 I tried to filter on the list to see if it brought back the correct ID's but it is still including the ones that have values in it.
I feel like there should be a much more elegant way to get this result, but I was able to get it with this:
GroupBlankCount = COUNTROWS( FILTER(SUMMARIZE(Table2, Table2[ID], "Values", MAX(Table2[Value])), [Values]=""))
EUREKA! That worked. I fully agree. Business Objects allows you to write queries like these using "For Each" function, which makes life much easier.
Thank you.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 62 | |
| 36 | |
| 30 | |
| 25 | |
| 21 |