This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I am currently exploring the functionality of Profitbase Financial Report Matrix and so far I have the following output:
Is there a way to have the report header sub total not show (the numbers in red)?
Thank you.
Solved! Go to Solution.
Hi @brdrok,
Thank you for reaching out to Microsoft Fabric Community.
Currently the Profitbase Financial Report Matrix visual does not have a built in option to hide only the subtotal values while keeping the parent row headers visible.
The dax approach is correct. Instead of using COUNTROWS(VALUES()), please try using ISINSCOPE() so that it is more reliable for detecting the detail level rows in the hierarchy.
myMV =
VAR Result =
CALCULATE (
SUM ( PIA[MarketValue] ),
PIA[ReportLine] IN { "CASH & STIF", "MARKET VALUE" }
)
RETURN
IF (
ISINSCOPE ( PIA[InvestmentStyle] ),
Result,
BLANK ()
)
Thanks and regards,
Anjan Kumar Chippa
Hi @brdrok,
Thank you for reaching out to Microsoft Fabric Community.
Currently the Profitbase Financial Report Matrix visual does not have a built in option to hide only the subtotal values while keeping the parent row headers visible.
The dax approach is correct. Instead of using COUNTROWS(VALUES()), please try using ISINSCOPE() so that it is more reliable for detecting the detail level rows in the hierarchy.
myMV =
VAR Result =
CALCULATE (
SUM ( PIA[MarketValue] ),
PIA[ReportLine] IN { "CASH & STIF", "MARKET VALUE" }
)
RETURN
IF (
ISINSCOPE ( PIA[InvestmentStyle] ),
Result,
BLANK ()
)
Thanks and regards,
Anjan Kumar Chippa
Probably not the best way of doing this but I had to muck around with DAX a little bit to kinda get it to work. I changed the measure myMV to:
var IStyleCount = COUNTROWS( values( PIA[InvestmentStyle] )) --HASONEVALUE(PIA[InvestmentStyle])
var result =
CALCULATE(
sum(PIA[MarketValue]),
PIa[ReportLine] IN { "CASH & STIF", "MARKET VALUE" }
)
return
if(IStyleCount = 1, result, BLANK())
Check out the May 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 |
|---|---|
| 32 | |
| 26 | |
| 25 | |
| 24 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 48 | |
| 27 | |
| 23 | |
| 20 |