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 moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. 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.
| User | Count |
|---|---|
| 36 | |
| 32 | |
| 31 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 67 | |
| 56 | |
| 31 | |
| 27 | |
| 22 |