Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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())
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 29 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 51 | |
| 44 | |
| 43 | |
| 39 | |
| 32 |