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

A 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.

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
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.