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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Calculate the percentage of table matrix as well as subtotals

I need to calculate the Share of the below table, I was able to calculate in Pbi the share per Brand by using this DAX
=DIVIDE([Sales_], CALCULATE([Sales_], ALLEXCEPT('tblProduct','tblProduct'[Brand_name])))

 

However subtotal needs to calculate the share base on column total (sub-total / Column Total)

 

In my case sub-total is returning 100%

 

Requirements: i write here as well the excel formula (Column F) on how to calculate the share and its sub-total.

ericnumber14_1-1646298463337.png

 

 

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Anonymous , Create a measure like


if(isinscope('tblProduct'[Model]) ,

DIVIDE([Sales_], CALCULATE([Sales_], ALLEXCEPT('tblProduct','tblProduct'[Brand_name]))),

DIVIDE([Sales_], CALCULATE([Sales_], ALL()))

)

 

View solution in original post

tamerj1
Super User
Super User

Hi @Anonymous 
You can use

 

Share per Brand = 
VAR ProductSahre =
    DIVIDE (
        [Sales_],
        CALCULATE ( 
            [Sales_],
            ALLEXCEPT ( 'tblProduct','tblProduct'[Brand_name] )
        )
    )
VAR BrandShare =
    DIVIDE (
        [Sales_],
        CALCULATE ( 
            [Sales_],
            REMOVEFILTERS ( 'tblProduct' )
        )
    )
VAR Result =
    IF ( 
        HASONEVALUE ( 'tblProduct'[Model] ),
        ProductSahre,
        BrandShare
    )
RETURN
    Result

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

This works as well, together with using dims in another table, thanks a lot!

tamerj1
Super User
Super User

Hi @Anonymous 
You can use

 

Share per Brand = 
VAR ProductSahre =
    DIVIDE (
        [Sales_],
        CALCULATE ( 
            [Sales_],
            ALLEXCEPT ( 'tblProduct','tblProduct'[Brand_name] )
        )
    )
VAR BrandShare =
    DIVIDE (
        [Sales_],
        CALCULATE ( 
            [Sales_],
            REMOVEFILTERS ( 'tblProduct' )
        )
    )
VAR Result =
    IF ( 
        HASONEVALUE ( 'tblProduct'[Model] ),
        ProductSahre,
        BrandShare
    )
RETURN
    Result

 

amitchandak
Super User
Super User

@Anonymous , Create a measure like


if(isinscope('tblProduct'[Model]) ,

DIVIDE([Sales_], CALCULATE([Sales_], ALLEXCEPT('tblProduct','tblProduct'[Brand_name]))),

DIVIDE([Sales_], CALCULATE([Sales_], ALL()))

)

 

Anonymous
Not applicable

It works! 🙂 

I have another requirements, same table as my example but we need to add additional column at Highest level, but this comes from another table, 
lets call the column as Customer_name from tblCustomer.


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors