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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
tian
Frequent Visitor

SUM By GROUP by Slicer

Hi Guys, I have data like this:

CompanyCategorySub-CategoryProduct Namesales
ACOMPFOOD1A1000
ACOMPFOOD1B1500
ACOMPFOOD1C2000
ACOMPFOOD2D3000
ACOMPRETAIL2E2000
ACOMPRETAIL2F1000
BCOMPRETAIL3G1000
BCOMPRETAIL3H5000
BCOMPSERVICE4I2500
BCOMPSERVICE4J1000


The case when I put the slicer based on Product name, the value also keep SUM of Product Name.

My Expectation result, when I put the slicer based on Product Name can show SUM of Group in a Card Visual, looks like:
Snag_28714774.png

Sorry for my explanation in Excel mode, that's to make it clear enough.

Does someone know how to this calculation in Dax

Thanks in advance for your help.


BR


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

Hi @tian 

I think you need to create an unrelated Product Name table. Then build a slicer by this table and create measures.

Product Name = VALUES('Table'[Product Name])

Measure codes:

% Sub-Category = 
VAR _SelectProductName =
    SELECTEDVALUE ( 'Product Name'[Product Name] )
VAR _SubCategory =
    CALCULATE (
        MAX ( 'Table'[Sub-Category] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Product Name] = _SelectProductName )
    )
VAR _SalesbyGroup =
    CALCULATE (
        SUM ( 'Table'[sales] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Sub-Category] = _SubCategory )
    )
VAR _Total =
    CALCULATE ( SUM ( 'Table'[sales] ), ALL ( 'Table' ) )
RETURN
    DIVIDE ( _SalesbyGroup, _Total )
% Category = 
VAR _SelectProductName =
    SELECTEDVALUE ( 'Product Name'[Product Name] )
VAR _Category =
    CALCULATE (
        MAX ( 'Table'[Category] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Product Name] = _SelectProductName )
    )
VAR _SalesbyGroup =
    CALCULATE (
        SUM ( 'Table'[sales] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Category] = _Category )
    )
VAR _Total =
    CALCULATE ( SUM ( 'Table'[sales] ), ALL ( 'Table' ) )
RETURN
    DIVIDE ( _SalesbyGroup, _Total )
% Company = 
VAR _SelectProductName =
    SELECTEDVALUE ( 'Product Name'[Product Name] )
VAR _Company =
    CALCULATE (
        MAX ( 'Table'[Company] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Product Name] = _SelectProductName )
    )
VAR _SalesbyGroup =
    CALCULATE (
        SUM ( 'Table'[sales] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Company] = _Company )
    )
VAR _Total =
    CALCULATE ( SUM ( 'Table'[sales] ), ALL ( 'Table' ) )
RETURN
    DIVIDE ( _SalesbyGroup, _Total )

Result is as below.

1.png

Best Regards,
Rico Zhou

 

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

2 REPLIES 2
v-rzhou-msft
Community Support
Community Support

Hi @tian 

I think you need to create an unrelated Product Name table. Then build a slicer by this table and create measures.

Product Name = VALUES('Table'[Product Name])

Measure codes:

% Sub-Category = 
VAR _SelectProductName =
    SELECTEDVALUE ( 'Product Name'[Product Name] )
VAR _SubCategory =
    CALCULATE (
        MAX ( 'Table'[Sub-Category] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Product Name] = _SelectProductName )
    )
VAR _SalesbyGroup =
    CALCULATE (
        SUM ( 'Table'[sales] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Sub-Category] = _SubCategory )
    )
VAR _Total =
    CALCULATE ( SUM ( 'Table'[sales] ), ALL ( 'Table' ) )
RETURN
    DIVIDE ( _SalesbyGroup, _Total )
% Category = 
VAR _SelectProductName =
    SELECTEDVALUE ( 'Product Name'[Product Name] )
VAR _Category =
    CALCULATE (
        MAX ( 'Table'[Category] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Product Name] = _SelectProductName )
    )
VAR _SalesbyGroup =
    CALCULATE (
        SUM ( 'Table'[sales] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Category] = _Category )
    )
VAR _Total =
    CALCULATE ( SUM ( 'Table'[sales] ), ALL ( 'Table' ) )
RETURN
    DIVIDE ( _SalesbyGroup, _Total )
% Company = 
VAR _SelectProductName =
    SELECTEDVALUE ( 'Product Name'[Product Name] )
VAR _Company =
    CALCULATE (
        MAX ( 'Table'[Company] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Product Name] = _SelectProductName )
    )
VAR _SalesbyGroup =
    CALCULATE (
        SUM ( 'Table'[sales] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Company] = _Company )
    )
VAR _Total =
    CALCULATE ( SUM ( 'Table'[sales] ), ALL ( 'Table' ) )
RETURN
    DIVIDE ( _SalesbyGroup, _Total )

Result is as below.

1.png

Best Regards,
Rico Zhou

 

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

amitchandak
Super User
Super User

@tian , based on what I got

 

measure = divide(sum(Table[Sales]), calculate(sum(Table[Sales]), all(Table)))

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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