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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
irenelitw629
Helper II
Helper II

100% Stacked Column Chart % Calculation

Hi,

 

This might be a silly question but I could not figure it out . In below sales table, product A is 29.16% of total sales ( $470,993/ $1,615,318)

irenelitw629_2-1680676627146.png

 

However, when I converted to 100% stacked column chart, the % become 27.67%. How is 27.67% calculated? I expect the chart to show 29.16% as per excel. Here is the file https://drive.google.com/file/d/1wzVEJmLtE6kuckDwIgObAIZGaoSjsPIY/view?usp=sharing

 

 

irenelitw629_4-1680676696547.png

 

 

 

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

Hi @irenelitw629 ,

 

The problem comes from negative values in your data, and if they are all positive, the results are the same on both sides.

vstephenmsft_0-1682393799306.png

Once the negative value of L is added, the result is different.

31.png

If you want to keep the results displayed in the left table in the Stacked column chart, you can create the following measure.

Measure = var _sum=SUMX(FILTER(ALLSELECTED(data),[Sales Quarter]=MAX('data'[Sales Quarter])&&[Product]=MAX('data'[Product])),[Sales Amount])
var _all=SUMX(ALLSELECTED(data),[Sales Amount])
return DIVIDE(_sum,_all)

Then use the normal Stacked column chart and replace the original value with a measure, which displays the percentage.

32.png

vstephenmsft_2-1682394174816.png

 

Best Regards,

Stephen Tao

 

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

4 REPLIES 4
v-stephen-msft
Community Support
Community Support

Hi @irenelitw629 ,

 

The problem comes from negative values in your data, and if they are all positive, the results are the same on both sides.

vstephenmsft_0-1682393799306.png

Once the negative value of L is added, the result is different.

31.png

If you want to keep the results displayed in the left table in the Stacked column chart, you can create the following measure.

Measure = var _sum=SUMX(FILTER(ALLSELECTED(data),[Sales Quarter]=MAX('data'[Sales Quarter])&&[Product]=MAX('data'[Product])),[Sales Amount])
var _all=SUMX(ALLSELECTED(data),[Sales Amount])
return DIVIDE(_sum,_all)

Then use the normal Stacked column chart and replace the original value with a measure, which displays the percentage.

32.png

vstephenmsft_2-1682394174816.png

 

Best Regards,

Stephen Tao

 

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

DOLEARY85
Super User
Super User

Hi,

 

it looks like because L is a negative percentage it's throwing off your total % calculation

 

@DOLEARY85 , thanks - anyway to fix it?

Not with that particular chart as all the values add up to 100% if you use the standard stacked column chart it should give you what you need.

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍


Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.