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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
Anonymous
Not applicable

Show Row Subtotal for Only One Row in Matrix

I have this data:

 

Item NumberSiteWarehouseLocationInventory Physical
1AABC1110
1ADFG1250
1APTN15100
1BFF22150
1BGG25200

 

And I am trying to figure out how I can have a matrix with the rows in the following order: Item Number > Site > Warehouse > Location, and then Inventory Physical in the values with stepped layout off. 

 

Where it gets tricky is I only want to see the sum of inventory physical for the item number level, I don't want to see totals for site, warehouse, or location. I have went through all of the matrix settings and can't figure out how to achieve this.

1 ACCEPTED SOLUTION
v-kongfanf-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can try below formula and turn off stepped layout icon.

TotalInventoryPhysical = 
SUM('Table'[Inventory Physical])
DisplayInventoryPhysical = 
IF(
    ISINSCOPE('Table'[Item Number]),
    [TotalInventoryPhysical],
    BLANK()
)

vkongfanfmsft_0-1721379388212.png

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-kongfanf-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can try below formula and turn off stepped layout icon.

TotalInventoryPhysical = 
SUM('Table'[Inventory Physical])
DisplayInventoryPhysical = 
IF(
    ISINSCOPE('Table'[Item Number]),
    [TotalInventoryPhysical],
    BLANK()
)

vkongfanfmsft_0-1721379388212.png

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

jdbuchanan71
Super User
Super User

In the matrix settings, under Row subtotals, you can switch on 'Per row level' and that will let you select which levels get a sub total.

jdbuchanan71_1-1721066375137.png

You would select the rows you want to disable it on in the 'Row level' dropdown then turn off 'Show Subtotal'

Anonymous
Not applicable

When I turn off subtotal for all rows except item number, it doesn't work correctly, it is still somehow managing to sum by the last row, "Location".

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

Find out what's new and trending in the Fabric community.