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

Calcualte 100% stacked of each column in stacked visualization

Hello Power BI community

 

I Need to build a measure that can calculate 100% based on all categories for each month. I want to apply this measure to my visualized Stacked column Chart. (I know I can use a 100 % Stacked column chart to show the correct percentage) But I only want to show this measure in my tooltips and keep the original visualization.

This is my Dax code so far:

Percentage = DIVIDE([Total cases],CALCULATE([Total cases],ALLEXCEPT(SALESFORCE_CASES_FCT_20210429, SALESFORCE_CASES_FCT_20210429[CASE_ORIGIN (groups)],DIM_DATE[YYYY-MM])),0)
 
Just like in the example in the last picture. I want to find the measure with "51,97%" and apply it to the tooltips in the first visualization .
 
Thanks for help
 
Best Regards
Khanh

 



Original visualizaitonOriginal visualizaitongroup based of a columngroup based of a columnexampel.PNG
2 ACCEPTED SOLUTIONS

Hi @Anonymous ,

You can update the formula of measure [Percentage] as below:

Note: please update the name of date field with the correct one in the table SALESFORCE_CASES_FCT_20210429 .

Percentage =
DIVIDE (
    [Total cases],
    CALCULATE (
        [Total cases],
        FILTER (
            ALLSELECTED ( 'SALESFORCE_CASES_FCT_20210429' ),
            FORMAT ( 'SALESFORCE_CASES_FCT_20210429'[Date], "YYYY-MM" )
                SELECTEDVALUE ( 'DIM_DATE'[YYYY-MM] )
        )
    ),
    0
)

yingyinr_2-1620201341909.png

Best Regards

Community Support Team _ Rena
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

Anonymous
Not applicable

Hi @_Rena
thanks you for your help.

I don't know why but Its also works when I tried with All function.

Percentage cases = DIVIDE([Totalcases],CALCULATE([Totalcases],ALL(SALESFORCE_CASES_FCT_20210429[Case_origin group])),0)

Best regards 
Khanh

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@Anonymous , I think it should be the only case Origin in all except

 

Percentage = DIVIDE([Total cases],CALCULATE([Total cases],ALLEXCEPT(SALESFORCE_CASES_FCT_20210429, SALESFORCE_CASES_FCT_20210429[CASE_ORIGIN (groups)])),0)

Anonymous
Not applicable

Hello amitchandak thanks for the answer.

 

However, I still experienced the issue.  Example, Its give me percentage of 4,41 % when it should be 40,74 %

KhanhTu_0-1620054826885.png

 

Hi @Anonymous ,

You can update the formula of measure [Percentage] as below:

Note: please update the name of date field with the correct one in the table SALESFORCE_CASES_FCT_20210429 .

Percentage =
DIVIDE (
    [Total cases],
    CALCULATE (
        [Total cases],
        FILTER (
            ALLSELECTED ( 'SALESFORCE_CASES_FCT_20210429' ),
            FORMAT ( 'SALESFORCE_CASES_FCT_20210429'[Date], "YYYY-MM" )
                SELECTEDVALUE ( 'DIM_DATE'[YYYY-MM] )
        )
    ),
    0
)

yingyinr_2-1620201341909.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi @_Rena
thanks you for your help.

I don't know why but Its also works when I tried with All function.

Percentage cases = DIVIDE([Totalcases],CALCULATE([Totalcases],ALL(SALESFORCE_CASES_FCT_20210429[Case_origin group])),0)

Best regards 
Khanh

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.