<?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 DAX measure add extra results in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-add-extra-results/m-p/4392706#M174376</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to compute a monthly running total of the count of&amp;nbsp;published "reference" :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;RT_TargetPub = CALCULATE(
    COUNT('Export_D2 (2)'[Référence]),
    FILTER(
        ALL('Export_D2 (2)'[Cible_PUBLICATION].[Date]), 
        'Export_D2 (2)'[Cible_PUBLICATION].[Date]&amp;lt;= MAX('Export_D2 (2)'[Cible_PUBLICATION].[Date])
        )
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The outcome is correct until february 2025 (the current month) but I got results for all month of 2025. How can I get results stopping consistently with the last date of my publication?&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;</description>
    <pubDate>Mon, 03 Feb 2025 15:16:41 GMT</pubDate>
    <dc:creator>spetiteau</dc:creator>
    <dc:date>2025-02-03T15:16:41Z</dc:date>
    <item>
      <title>DAX measure add extra results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-add-extra-results/m-p/4392706#M174376</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to compute a monthly running total of the count of&amp;nbsp;published "reference" :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;RT_TargetPub = CALCULATE(
    COUNT('Export_D2 (2)'[Référence]),
    FILTER(
        ALL('Export_D2 (2)'[Cible_PUBLICATION].[Date]), 
        'Export_D2 (2)'[Cible_PUBLICATION].[Date]&amp;lt;= MAX('Export_D2 (2)'[Cible_PUBLICATION].[Date])
        )
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The outcome is correct until february 2025 (the current month) but I got results for all month of 2025. How can I get results stopping consistently with the last date of my publication?&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;</description>
      <pubDate>Mon, 03 Feb 2025 15:16:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-add-extra-results/m-p/4392706#M174376</guid>
      <dc:creator>spetiteau</dc:creator>
      <dc:date>2025-02-03T15:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure add extra results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-add-extra-results/m-p/4392719#M174377</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="923461" data-lia-user-login="spetiteau" class="lia-mention lia-mention-user"&gt;spetiteau&lt;/a&gt;&amp;nbsp;, Try using&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RT_TargetPub = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;COUNT('Export_D2 (2)'[Référence]),&lt;BR /&gt;FILTER(&lt;BR /&gt;ALL('Export_D2 (2)'[Cible_PUBLICATION].[Date]), &lt;BR /&gt;'Export_D2 (2)'[Cible_PUBLICATION].[Date] &amp;lt;= MAX('Export_D2 (2)'[Cible_PUBLICATION].[Date]) &amp;amp;&amp;amp;&lt;BR /&gt;'Export_D2 (2)'[Cible_PUBLICATION].[Date] &amp;lt;= MAXX(ALL('Export_D2 (2)'), 'Export_D2 (2)'[Cible_PUBLICATION].[Date])&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2025 15:35:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-add-extra-results/m-p/4392719#M174377</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-02-03T15:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure add extra results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-add-extra-results/m-p/4392747#M174379</link>
      <description>&lt;P&gt;i've tried&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;RT_TargetPub = CALCULATE(
    COUNT('Export_D2 (2)'[Référence]),
    FILTER(
        ALL('Export_D2 (2)'[Cible_PUBLICATION].[Date]), 
        'Export_D2 (2)'[Cible_PUBLICATION].[Date]&amp;lt;= MAX('Export_D2 (2)'[Cible_PUBLICATION].[Date]) &amp;amp;&amp;amp;
        'Export_D2 (2)'[Cible_PUBLICATION].[Date] &amp;lt;= MAXX(ALL('Export_D2 (2)'), 'Export_D2 (2)'[Cible_PUBLICATION].[Date]) &amp;amp;&amp;amp;
        'Export_D2 (2)'[Cible_PUBLICATION].[Date] &amp;lt;&amp;gt; BLANK()
        )
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have still the same result&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2025 15:52:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-add-extra-results/m-p/4392747#M174379</guid>
      <dc:creator>spetiteau</dc:creator>
      <dc:date>2025-02-03T15:52:57Z</dc:date>
    </item>
  </channel>
</rss>

