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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Chirag_Sidana
Frequent Visitor

Clustered Column Chart - Showing Percentages Based on Legend

Hi,

 

I have built a clustered column chart for the data below:

 

Image1.PNG

 

 

 

 

 

 

 

 

 

 

 

The state acts as a filter for the chart. X-Axis is category and y-axis is Value. The legend is Category. Please see image below:

 

 

Image 2.PNG

 

 

 

 

 

 

 

 

 

 

 

 

 

I want to show % Value in this chart (instead of value).

% Value = (Sum of Value in category for the given data source)/(Sum of values across categories for the given data source)

Basically I want to show percentages in a clustered column chart based on the values in legend. I don't want to hard code the percentage values since I want to use this feature irrespective of the state filter at the top.

 

Can someone advice how to perform this?

 

Thanks in advance,

Chirag

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Chirag_Sidana,

 

Please new a measure:

percentage =
SUM ( TB[Value] )
    / CALCULATE ( SUM ( TB[Value] ), ALLEXCEPT ( TB, TB[State], TB[Data Source] ) )

Best regards,

Yuliana Gu

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

3 REPLIES 3
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Chirag_Sidana,

 

Please new a measure:

percentage =
SUM ( TB[Value] )
    / CALCULATE ( SUM ( TB[Value] ), ALLEXCEPT ( TB, TB[State], TB[Data Source] ) )

Best regards,

Yuliana Gu

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

Thank you! This is really helpful.

 

Regards,

Chirag

Seward12533
Solution Sage
Solution Sage

Something this this.

Pct of Total = DIVIDE([Measure]),CALCULATE([Measure],ALL(table[Category]))

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors