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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Using Cards Visuals with Clustered Column Charts

Hello PBI Community 

Good Day!

 

**My questions are posted in the screen shot below**

What is the best way to show the percentage change for various Clustered Column Charts?

klsmith_dnb_0-1621965215297.png

Thank you in advance for your time!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Adding another example to this post.

Is there a way to embed the % Change Card into the Clustered Column Chart?

klsmith_dnb_0-1621972673349.png

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Anonymous,

Did these visuals use the same data table fields with different filters?

If that is the case, current power bi does not support getting the different results from the same data table.
You need to create new tables as source of the slicer, then you can use the DAX expression to extract the selection for calculating and respond with filter changes.

measure =
VAR v1 =
    CALCULATE (
        SUM ( Table[Amount] ),
        ALLSELECTED ( Table1 ),
        VALUES ( Table1[Category] )
    )
VAR v2 =
    CALCULATE (
        SUM ( Table[Amount] ),
        FILTER ( ALL ( Table1 ), [Field] IN VALUES ( selector[Field] ) ),
        VALUES ( Table1[Category] )
    )
RETURN
    DIVIDE ( v2 - v1, v1 )

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

Hi Xiaoxin

Yes they do. Will give your Dax Measure a try.

 

Much appreciated your help

 

Thank you

 

 

Anonymous
Not applicable

HI @Anonymous,

Sure, I hope this formula helps.
BTW, v1, v2 variables mean the different calculation of visuals. You can use all functions to ignore current table filters and manually add filter conditions to them.

Managing “all” functions in DAX: ALL, ALLSELECTED, ALLNOBLANKROW, ALLEXCEPT - SQLBI

DAX - The Many Faces of VALUES() | P3 Adaptive

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

Adding another example to this post.

Is there a way to embed the % Change Card into the Clustered Column Chart?

klsmith_dnb_0-1621972673349.png

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.