<?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: Cumulated value issue and bar chart in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulated-value-issue-and-bar-chart/m-p/4618710#M176759</link>
    <description>&lt;P&gt;Is it as simple as adding the Month column from you date/calendar table onto the X Axis of your bar chart visual and the column portion of the matrix visual?&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If it's something more complex can you share the measure you are using to evaluate in both visuals?&lt;/P&gt;</description>
    <pubDate>Thu, 20 Mar 2025 17:46:43 GMT</pubDate>
    <dc:creator>d_m_LNK</dc:creator>
    <dc:date>2025-03-20T17:46:43Z</dc:date>
    <item>
      <title>Cumulated value issue and bar chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulated-value-issue-and-bar-chart/m-p/4618515#M176749</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;Got a classic 2 months dataset with transaction dates (Jan &amp;amp; Feb), suppliers and amount, linked to a DimDate table.&lt;/P&gt;&lt;P&gt;Created a button to switch between Running cost &amp;amp; accumulated.&lt;/P&gt;&lt;P&gt;Add the Supplier field as legend&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Works partialy in a pivot table, Total accumulated is correctly calculated in Feb, but not the details&lt;/P&gt;&lt;P&gt;Doesn't work in a barchart,&amp;nbsp; it accumulates only suppliers with amounts in Jan &amp;amp; Fev&lt;/P&gt;&lt;P&gt;Supplier 05 &amp;amp; 07 have no data in Fev, so they are not taken in account in the barchart in Feb.&lt;/P&gt;&lt;P&gt;How can I fix that ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thank you in advance folks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 15:36:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulated-value-issue-and-bar-chart/m-p/4618515#M176749</guid>
      <dc:creator>Jay20024</dc:creator>
      <dc:date>2025-03-20T15:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulated value issue and bar chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulated-value-issue-and-bar-chart/m-p/4618710#M176759</link>
      <description>&lt;P&gt;Is it as simple as adding the Month column from you date/calendar table onto the X Axis of your bar chart visual and the column portion of the matrix visual?&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If it's something more complex can you share the measure you are using to evaluate in both visuals?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 17:46:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulated-value-issue-and-bar-chart/m-p/4618710#M176759</guid>
      <dc:creator>d_m_LNK</dc:creator>
      <dc:date>2025-03-20T17:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulated value issue and bar chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulated-value-issue-and-bar-chart/m-p/4619108#M176782</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sales: = 
SUM( sales[sales] )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sales cumulate: = 
IF (
    [Sales:],
    CALCULATE (
        [Sales:],
        FILTER (
            ALL ( 'calendar'[Year-Month sort], 'calendar'[Year-Month] ),
            'calendar'[Year-Month sort] &amp;lt;= MAX ( 'calendar'[Year-Month sort] )
        )
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2025 04:32:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulated-value-issue-and-bar-chart/m-p/4619108#M176782</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2025-03-21T04:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulated value issue and bar chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulated-value-issue-and-bar-chart/m-p/4622003#M176914</link>
      <description>&lt;P&gt;Once again,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;,&amp;nbsp;you made my day. Seeing your cumulated measure, I realized that I got a condition in my measure, blacklisting blank values ! Just removed it and it works like a charm. Many thanks for your expertise !&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 09:07:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulated-value-issue-and-bar-chart/m-p/4622003#M176914</guid>
      <dc:creator>Jay20024</dc:creator>
      <dc:date>2025-03-24T09:07:39Z</dc:date>
    </item>
  </channel>
</rss>

