Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
brdrok
Helper I
Helper I

Profitbase Financial Report Matrix Row Header question

I am currently exploring the functionality of Profitbase Financial Report Matrix and so far I have the following output:

brdrok_0-1778601199282.png

Is there a way to have the report header sub total not show (the numbers in red)?
Thank you.

1 ACCEPTED SOLUTION
v-achippa
Community Support
Community Support

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

View solution in original post

3 REPLIES 3
v-achippa
Community Support
Community Support

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 @v-achippa .  Thank you for confirming that I was on the right track.

brdrok
Helper I
Helper I

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())

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors