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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Brianii
Frequent Visitor

Clustered column chart with a stacked chart showing the difference

 

I have a clustered column chart and I am wondering if it's possible to show the difference between Delivered and Count All in red (see week number 27).

 

Brianii_2-1691485028773.png

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Brianii ,

 

Sorry, Power BI can't implement this feature for the time being, in the Clustered column chart, the colors in the column can only be the same color, and you can't add a color

You can also submit an idea for it at https://ideas.powerbi.com/forums and wait for users with the same needs as you to vote for you to help make it happen as soon as possible.

 

vyangliumsft_0-1691637096422.png

 

You can add a category in [Group] to act as a Difference and display it in Visual.

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
var _table1=
SUMMARIZE(
    'Table','Table'[Index],
    "Group","Difference",
    "Value",
SUMX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])&&'Table'[Group]="Coun_All"),[Value])
    -   SUMX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])&&'Table'[Group]="Delivered"),[Value]))
return
UNION(
    'Table',_table1)

vyangliumsft_1-1691637096424.png

2. Result:

vyangliumsft_2-1691637137829.png

 

Best Regards,

Liu Yang

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
Brianii
Frequent Visitor

Hi
Thank you for taking your time to respond. Whilst it's not what I am looking for, it's the close. I'll accept this as a solution and submit the idea. Thanks

Anonymous
Not applicable

Hi  @Brianii ,

 

Sorry, Power BI can't implement this feature for the time being, in the Clustered column chart, the colors in the column can only be the same color, and you can't add a color

You can also submit an idea for it at https://ideas.powerbi.com/forums and wait for users with the same needs as you to vote for you to help make it happen as soon as possible.

 

vyangliumsft_0-1691637096422.png

 

You can add a category in [Group] to act as a Difference and display it in Visual.

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
var _table1=
SUMMARIZE(
    'Table','Table'[Index],
    "Group","Difference",
    "Value",
SUMX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])&&'Table'[Group]="Coun_All"),[Value])
    -   SUMX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])&&'Table'[Group]="Delivered"),[Value]))
return
UNION(
    'Table',_table1)

vyangliumsft_1-1691637096424.png

2. Result:

vyangliumsft_2-1691637137829.png

 

Best Regards,

Liu Yang

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

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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