<?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 How to get total value in column clustererd chart in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-total-value-in-column-clustererd-chart/m-p/2188951#M51123</link>
    <description>&lt;P&gt;i have single datasheet name called Master . in this sheet have two column name&amp;nbsp; &amp;nbsp; reductionlist&amp;nbsp; and&amp;nbsp; value . i am trying to get&amp;nbsp; total value clusterd column graph . when i use union measure getting error .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have attached simple&amp;nbsp; sample data sheet for&amp;nbsp; &amp;nbsp;reference&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have expained in pbi file&amp;nbsp; &amp;nbsp;also with expected output screen shot&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;A href="https://drive.google.com/file/d/1fOGZ75cHtJN0xS1cr0RgTv0UsKEJsbAZ/view?usp=sharing" target="_self"&gt;Sample File &lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 14 Nov 2021 18:45:15 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-11-14T18:45:15Z</dc:date>
    <item>
      <title>How to get total value in column clustererd chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-total-value-in-column-clustererd-chart/m-p/2188951#M51123</link>
      <description>&lt;P&gt;i have single datasheet name called Master . in this sheet have two column name&amp;nbsp; &amp;nbsp; reductionlist&amp;nbsp; and&amp;nbsp; value . i am trying to get&amp;nbsp; total value clusterd column graph . when i use union measure getting error .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have attached simple&amp;nbsp; sample data sheet for&amp;nbsp; &amp;nbsp;reference&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have expained in pbi file&amp;nbsp; &amp;nbsp;also with expected output screen shot&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;A href="https://drive.google.com/file/d/1fOGZ75cHtJN0xS1cr0RgTv0UsKEJsbAZ/view?usp=sharing" target="_self"&gt;Sample File &lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Nov 2021 18:45:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-total-value-in-column-clustererd-chart/m-p/2188951#M51123</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-14T18:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to get total value in column clustererd chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-total-value-in-column-clustererd-chart/m-p/2193914#M51340</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to add the total column in the chart, you cannot use measure. You need create an entity table/calculated table. But once you do this, the total value of the chart will be static (not affected by filters)&lt;/P&gt;
&lt;P&gt;sample:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;New Table = 
VAR tab1 =
    FILTER (
        Sheet1,
        Sheet1[Reduction buckets]
            IN {
            " Total Reduction",
            "Overstock Consumption",
            " xxxxx",
            "xxxxx"
        }
    )
VAR tab2 =
    ROW (
        "Reduction buckeys", "Total",
        "Value", SUMX(tab1,Sheet1[Value] )
    )
RETURN
    UNION ( tab2, tab1 )&lt;/LI-CODE&gt;
&lt;P&gt;In addition,&amp;nbsp; you try to use 'water fall chart' to replace ‘line and clustered column chart’.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Eason&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 08:25:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-total-value-in-column-clustererd-chart/m-p/2193914#M51340</guid>
      <dc:creator>v-easonf-msft</dc:creator>
      <dc:date>2021-11-17T08:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to get total value in column clustererd chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-total-value-in-column-clustererd-chart/m-p/2193915#M51341</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to add the total column in the chart, you cannot use measure. You need create an entity table/calculated table. But once you do this, the total value of the chart will be static (not affected by filters)&lt;/P&gt;
&lt;P&gt;sample:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;New Table = 
VAR tab1 =
    FILTER (
        Sheet1,
        Sheet1[Reduction buckets]
            IN {
            " Total Reduction",
            "Overstock Consumption",
            " xxxxx",
            "xxxxx"
        }
    )
VAR tab2 =
    ROW (
        "Reduction buckeys", "Total",
        "Value", SUMX(tab1,Sheet1[Value] )
    )
RETURN
    UNION ( tab2, tab1 )&lt;/LI-CODE&gt;
&lt;P&gt;In addition,&amp;nbsp; you try to use 'water fall chart' to replace ‘line and clustered column chart’.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Eason&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 08:25:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-total-value-in-column-clustererd-chart/m-p/2193915#M51341</guid>
      <dc:creator>v-easonf-msft</dc:creator>
      <dc:date>2021-11-17T08:25:50Z</dc:date>
    </item>
  </channel>
</rss>

