<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Using Cards Visuals with Clustered Column Charts in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1868679#M29644</link>
    <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Hi&amp;nbsp;@Anonymous,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Did these visuals use the same data table fields with different filters? &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;If that is the case, current power bi does not support getting the different results from the same data table.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;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.&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;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 )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 28 May 2021 01:44:22 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-05-28T01:44:22Z</dc:date>
    <item>
      <title>Using Cards Visuals with Clustered Column Charts</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1863184#M29590</link>
      <description>&lt;P&gt;Hello PBI Community&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good Day!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="ql-align-center"&gt;&lt;STRONG&gt;**My questions are posted in the screen shot below**&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="ql-align-center"&gt;&lt;STRONG&gt;What is the best way to show the percentage change for various Clustered Column Charts?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="klsmith_dnb_0-1621965215297.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/521315i932BE80D87158C23/image-size/medium?v=v2&amp;amp;px=400" role="button" title="klsmith_dnb_0-1621965215297.png" alt="klsmith_dnb_0-1621965215297.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for your time!&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 17:58:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1863184#M29590</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-25T17:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using Cards Visuals with Clustered Column Charts</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1863297#M29592</link>
      <description>&lt;P&gt;Adding another example to this post.&lt;/P&gt;&lt;P&gt;Is there a way to embed the % Change Card into the Clustered Column Chart?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="klsmith_dnb_0-1621972673349.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/521336i94A9D445E9AE70B8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="klsmith_dnb_0-1621972673349.png" alt="klsmith_dnb_0-1621972673349.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 19:58:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1863297#M29592</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-25T19:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using Cards Visuals with Clustered Column Charts</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1868679#M29644</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Hi&amp;nbsp;@Anonymous,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Did these visuals use the same data table fields with different filters? &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;If that is the case, current power bi does not support getting the different results from the same data table.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;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.&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;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 )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 01:44:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1868679#M29644</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-28T01:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using Cards Visuals with Clustered Column Charts</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1875417#M29718</link>
      <description>&lt;P&gt;Hi Xiaoxin&lt;/P&gt;&lt;P&gt;Yes they do. Will give your Dax Measure a try.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Much appreciated your help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 15:10:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1875417#M29718</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-01T15:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using Cards Visuals with Clustered Column Charts</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1876824#M29731</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;HI&amp;nbsp;@Anonymous,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Sure, I hope this formula helps. &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;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.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://www.sqlbi.com/articles/managing-all-functions-in-dax-all-allselected-allnoblankrow-allexcept/" target="_blank"&gt;Managing “all” functions in DAX: ALL, ALLSELECTED, ALLNOBLANKROW, ALLEXCEPT - SQLBI&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://p3adaptive.com/2014/08/the-many-faces-of-values/" target="_blank"&gt;DAX - The Many Faces of VALUES() | P3 Adaptive&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 06:45:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Using-Cards-Visuals-with-Clustered-Column-Charts/m-p/1876824#M29731</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-02T06:45:17Z</dc:date>
    </item>
  </channel>
</rss>

