<?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: Cumulative bar chart comparing months by year in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-bar-chart-comparing-months-by-year/m-p/2506653#M69428</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Is your problem solved? If so, kindly mark the proper reply as a solution to help others having the similar issue and close the case. If not, let me know and I'll try to help you further.&lt;BR /&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Yalan Wu&lt;BR /&gt;If this post &lt;STRONG&gt;&lt;I&gt;helps&lt;/I&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Wed, 11 May 2022 06:41:01 GMT</pubDate>
    <dc:creator>v-yalanwu-msft</dc:creator>
    <dc:date>2022-05-11T06:41:01Z</dc:date>
    <item>
      <title>Cumulative bar chart comparing months by year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-bar-chart-comparing-months-by-year/m-p/2491344#M68595</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm doing a clustered column chart showing quotes sent in each calendar month for both 2021 and 2022. The chart is displaying the May 2022 value for future months where I have no data. I want to show all of 2021 but only 2022 up to the current month where I have data (May 2022).&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me please?&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2022 15:56:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-bar-chart-comparing-months-by-year/m-p/2491344#M68595</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-03T15:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative bar chart comparing months by year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-bar-chart-comparing-months-by-year/m-p/2491460#M68605</link>
      <description>&lt;P&gt;Create a dax masure a but like this to return the value is the date &amp;lt;= today,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and return dull when the value is &amp;gt; today&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Graphvalue =&lt;BR /&gt;IF(&lt;BR /&gt;MIN(Table[date]) &amp;lt;= [todaysdate],&lt;/P&gt;
&lt;P&gt;SUM(Table[value]),&lt;/P&gt;
&lt;P&gt;BLANK()&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have helped you now please help me with kudos.&lt;BR /&gt;I am a Power BI volunteer so please click the thumbs up if you like me trying to help you.&lt;BR /&gt;And click Accept As Solution if I have fixed your problem.&lt;BR /&gt;One problem per ticket please. If you need to expand or change your problem then please accept this solution and raise a new ticket. Many thanks&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2022 17:06:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-bar-chart-comparing-months-by-year/m-p/2491460#M68605</guid>
      <dc:creator>speedramps</dc:creator>
      <dc:date>2022-05-03T17:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative bar chart comparing months by year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-bar-chart-comparing-months-by-year/m-p/2497464#M68944</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;;&lt;/P&gt;
&lt;P&gt;As I said, but since it's summation, you can change it to:&lt;/P&gt;
&lt;LI-CODE lang="java"&gt;value =
IF (
    MIN ( Table[date] ) &amp;lt;= TODAY (),
    CALCULATE (
        SUM ( Table[value] ),
        FILTER ( ALL ( 'table' ), [date] &amp;lt;= MAX ( [date] ) )
    ),
    BLANK ()
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Yalan Wu&lt;BR /&gt;If this post &lt;STRONG&gt;&lt;I&gt;helps&lt;/I&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 03:52:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-bar-chart-comparing-months-by-year/m-p/2497464#M68944</guid>
      <dc:creator>v-yalanwu-msft</dc:creator>
      <dc:date>2022-05-06T03:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative bar chart comparing months by year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-bar-chart-comparing-months-by-year/m-p/2506653#M69428</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Is your problem solved? If so, kindly mark the proper reply as a solution to help others having the similar issue and close the case. If not, let me know and I'll try to help you further.&lt;BR /&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Yalan Wu&lt;BR /&gt;If this post &lt;STRONG&gt;&lt;I&gt;helps&lt;/I&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 06:41:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-bar-chart-comparing-months-by-year/m-p/2506653#M69428</guid>
      <dc:creator>v-yalanwu-msft</dc:creator>
      <dc:date>2022-05-11T06:41:01Z</dc:date>
    </item>
  </channel>
</rss>

