Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
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
Sample Dataset:
JobNum | JobDesc | Assigned_to |
1 | Job A | Adam |
| 2 | Job B | Bob |
| 3 | Job C | Charlie |
| 4 | Job D | Charlie |
| 5 | Job E | Eve |
| 6 | Job F | Adam |
Goal:
when Matrix is collapsed there is no value shown for job description. (the blank values shown in M_description but for every row)
Attempt so far:
Using a measure to return blank if there is more than 1 associated value as there would be in totals, but this fails when there is only one job associated with a person.
M_Description = IF(HASONEVALUE('Table'[JobDesc]),MAX('Table'[JobDesc]),BLANK())I feel like there is probably a setting in the visual but I have yet to find it.
Solved! Go to Solution.
If(
Isinscope( table[JobNum]),
Selectedvalue( table[jobDesc])
)
If(
Isinscope( table[JobNum]),
Selectedvalue( table[jobDesc])
)
I will caveat that this solution doesn't appear to work if I only use these measures as the values (the entire matrix returns emtpy) but that is not an issue in my use case
and then it works fine when I add just a regular column.
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 |
|---|---|
| 48 | |
| 40 | |
| 38 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |