<?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 SUMX problem in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-problem/m-p/2960865#M98605</link>
    <description>&lt;P&gt;I had a problem while using SUMX.&lt;/P&gt;&lt;P&gt;I need to count the number of project that start in November, but the total is wrong (as the image bellow).&lt;/P&gt;&lt;P&gt;I'm so confuse =((&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;</description>
    <pubDate>Sun, 11 Dec 2022 16:33:27 GMT</pubDate>
    <dc:creator>hungbm1</dc:creator>
    <dc:date>2022-12-11T16:33:27Z</dc:date>
    <item>
      <title>SUMX problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-problem/m-p/2960865#M98605</link>
      <description>&lt;P&gt;I had a problem while using SUMX.&lt;/P&gt;&lt;P&gt;I need to count the number of project that start in November, but the total is wrong (as the image bellow).&lt;/P&gt;&lt;P&gt;I'm so confuse =((&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;</description>
      <pubDate>Sun, 11 Dec 2022 16:33:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-problem/m-p/2960865#M98605</guid>
      <dc:creator>hungbm1</dc:creator>
      <dc:date>2022-12-11T16:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX problem</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-problem/m-p/2960962#M98612</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="484992" data-lia-user-login="hungbm1" class="lia-mention lia-mention-user"&gt;hungbm1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You're missing context transition. Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Number of new project =
SUMX (
    DISTINCT ( D_Project[Project Code] ),
    CALCULATE (
        VAR Start_of_period =
            MIN ( 'Calendar'[Date] )
        VAR End_of_period =
            MAX ( 'Calendar'[Date] )
        VAR Start_date_of_project =
            SELECTEDVALUE ( D_Project[Plan Start date (65)] )
        RETURN
            IF (
                Start_of_period &amp;lt;= Start_date_of_project
                    &amp;amp;&amp;amp; Start_date_of_project &amp;lt;= End_of_period,
                1,
                0
            )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 29 Dec 2022 10:58:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-problem/m-p/2960962#M98612</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-29T10:58:56Z</dc:date>
    </item>
  </channel>
</rss>

