Forum Discussion
Profitbase Financial Report Matrix Row Header question
- 3 months ago
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