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
I've searched through the community for an answer to this but haven't found one yet. Where there would normally be Row Subtotals, I need to have row subdifferences. The first image below is the matrix in PowerBI, the second is an excel example of what I need. Any help would be appreciated.
Solved! Go to Solution.
Hi @mikeoshields ,
Measure can only be placed in the value of the matrix view, and the view you expect cannot be achieved with a matrix.
This can currently be achieved:
Sample data:
Measure:
Difference =
CALCULATE (
MAX ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
[UCT_CD] = SELECTEDVALUE ( 'Table'[UCT_CD] )
&& [Date] = SELECTEDVALUE ( 'Table'[Date] )
)
)
- CALCULATE (
MIN ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
[UCT_CD] = SELECTEDVALUE ( 'Table'[UCT_CD] )
&& [Date] = SELECTEDVALUE ( 'Table'[Date] )
)
)
The result is:
Hope this helps you.
Best Regards,
Community Support Team _Yinliw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mikeoshields ,
Measure can only be placed in the value of the matrix view, and the view you expect cannot be achieved with a matrix.
This can currently be achieved:
Sample data:
Measure:
Difference =
CALCULATE (
MAX ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
[UCT_CD] = SELECTEDVALUE ( 'Table'[UCT_CD] )
&& [Date] = SELECTEDVALUE ( 'Table'[Date] )
)
)
- CALCULATE (
MIN ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
[UCT_CD] = SELECTEDVALUE ( 'Table'[UCT_CD] )
&& [Date] = SELECTEDVALUE ( 'Table'[Date] )
)
)
The result is:
Hope this helps you.
Best Regards,
Community Support Team _Yinliw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
|---|---|
| 10 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |
| User | Count |
|---|---|
| 50 | |
| 27 | |
| 23 | |
| 23 | |
| 22 |