Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

Show Row Subtotal for Only One Row in Matrix

I have this data:   Item Number Site Warehouse Location Inventory Physical 1 A ABC 11 10 1 A DFG 12 50 1 A PTN 15 100 1 B FF 22 150 1 B GG 25 200   An...
  • Anonymous's avatar
    Anonymous
    2 years ago

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

     

    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.