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 moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hope someone can help with this ISBLANK function:
# Tables with no person assigned = CALCULATE(DISTINCTCOUNT(responsibility[table_id]),(responsibility[role_id]="Engineer" && ISBLANK(responsibility[user_id])))
It is currently not returning a number, so I must have done something wrong here.
Appreciate any help!
Thanks for the various solutions. For some reason, the formulas are not capturing the blank values. I'm trying different fields besides user_id like user_lastname but still not recognizing blanks. Very strange
Hi, @medwards
Can you provide sample data for testing? Sensitive information can be removed in advance. What kind of expected results do you expect? You can also show it with pictures or Excel. I look forward to your response.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @medwards
You can try the following methods.
Sample data:
Measure:
# Tables with no person assigned =
CALCULATE ( DISTINCTCOUNT ( responsibility[table_id] ),
FILTER ( ALL ( responsibility ),
responsibility[role_id] = "Engineer"
&& ISBLANK ( responsibility[user_id] )
)
)
Or
Measure =
CALCULATE ( DISTINCTCOUNT ( responsibility[table_id] ),
FILTER ( ALL ( responsibility ),
responsibility[role_id] = "Engineer"
&& responsibility[user_id] = BLANK()
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@medwards , seem fine, need data to test
Try like this
# Tables with no person assigned = CALCULATE(DISTINCTCOUNT(responsibility[table_id]),Filter(responsibility, responsibility[role_id]="Engineer" && ISBLANK(responsibility[user_id])))
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 5 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 14 | |
| 8 | |
| 7 | |
| 6 | |
| 6 |