<?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: SUMX SUMMARIZE not working as intended in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432909#M64841</link>
    <description>&lt;P&gt;I've uploaded the sample data here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1S5mw2j6yK11k18JuUA0tnWVGqniNGYCm/view?usp=sharing" target="_blank"&gt;https://drive.google.com/file/d/1S5mw2j6yK11k18JuUA0tnWVGqniNGYCm/view?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am expecting 2022-03 in the Active tab to evaluate to a total of 15,825&lt;/P&gt;</description>
    <pubDate>Fri, 01 Apr 2022 20:54:06 GMT</pubDate>
    <dc:creator>rjiang</dc:creator>
    <dc:date>2022-04-01T20:54:06Z</dc:date>
    <item>
      <title>SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432661#M64817</link>
      <description>&lt;P&gt;I am trying to get a matrix to display the results of this measure. Essentially, I want it to flag a user with a 1 if the clicks in the last 3 months are greater than or equal to 3 and flag with a 0 otherwise. However, the measure shown below is not evaulating as intended.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Active =&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Active&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Usage Data'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Usage Data'[gstClientID]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Clicks Last 3 Months]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;=&lt;/SPAN&gt;&lt;SPAN&gt;3&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt; &lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ACTIVE&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;ACTIVE&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Here is the measure (working as expected) used in [Active]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Clicks Last 3 Months = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Clicks_Last_3&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Usage Data'[gstClientID]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;[Clicks]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DATESINPERIOD&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Date Lookup'[Date]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Date Lookup'[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MONTH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Date Lookup'[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)-&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;3&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MONTH&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt; &lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Clicks_Last_3&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Clicks_Last_3&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;//Calculates clicks in the last 3 months (does not include current month)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 01 Apr 2022 16:59:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432661#M64817</guid>
      <dc:creator>rjiang</dc:creator>
      <dc:date>2022-04-01T16:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432729#M64819</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="322216" data-lia-user-login="rjiang" class="lia-mention lia-mention-user"&gt;rjiang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can try&lt;/P&gt;&lt;LI-CODE lang="php"&gt;VAR Active =
SUMX (
    ADDCOLUMNS (
        SUMMARIZE ( 'Usage Data', 'Usage Data'[gstClientID] ),
        "@ClicksLast3Month", [Clicks Last 3 Months]
    ),
    IF ( [@ClicksLast3Month] &amp;gt;= 3, 1, 0 )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 18:00:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432729#M64819</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-01T18:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432768#M64822</link>
      <description>&lt;P&gt;Thanks. The output has changed slightly, but I'm still significantly off from what's expected&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 18:36:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432768#M64822</guid>
      <dc:creator>rjiang</dc:creator>
      <dc:date>2022-04-01T18:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432771#M64823</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="322216" data-lia-user-login="rjiang" class="lia-mention lia-mention-user"&gt;rjiang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is on the rows of your matrix visual&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 18:37:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432771#M64823</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-01T18:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432773#M64824</link>
      <description>&lt;P&gt;CompanyID and gstClientID&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 18:39:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432773#M64824</guid>
      <dc:creator>rjiang</dc:creator>
      <dc:date>2022-04-01T18:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432781#M64825</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="322216" data-lia-user-login="rjiang" class="lia-mention lia-mention-user"&gt;rjiang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then try this&lt;/P&gt;&lt;LI-CODE lang="php"&gt;VAR Active =
SUMX (
    ADDCOLUMNS (
        SUMMARIZE ( 'Usage Data', 'Usage Data'[CompanyID], 'Usage Data'[gstClientID] ),
        "@ClicksLast3Month", [Clicks Last 3 Months]
    ),
    IF ( [@ClicksLast3Month] &amp;gt;= 3, 1, 0 )&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 01 Apr 2022 18:48:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432781#M64825</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-01T18:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432790#M64826</link>
      <description>&lt;P&gt;Closer, but still not what I'd expect.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm noticing that the more fields I add to the summarize function, the higher the counts go. How do I know which fields should be included or excluded?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:03:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432790#M64826</guid>
      <dc:creator>rjiang</dc:creator>
      <dc:date>2022-04-01T19:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432795#M64827</link>
      <description>&lt;P&gt;Do you have anything else on the slicers? Maybe from other tables?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:07:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432795#M64827</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-01T19:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432797#M64829</link>
      <description>&lt;P&gt;Yes, there are filters on all pages for CompanyName and ProductName&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:09:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432797#M64829</guid>
      <dc:creator>rjiang</dc:creator>
      <dc:date>2022-04-01T19:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432798#M64830</link>
      <description>&lt;P&gt;Are these two columns in the same table?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:11:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432798#M64830</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-01T19:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432806#M64831</link>
      <description>&lt;P&gt;Yes they are columns in the table, but not in the matrix&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:16:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432806#M64831</guid>
      <dc:creator>rjiang</dc:creator>
      <dc:date>2022-04-01T19:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432812#M64832</link>
      <description>&lt;P&gt;Ok thebn add the to SUMMARIZE&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:20:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432812#M64832</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-01T19:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432822#M64833</link>
      <description>&lt;LI-CODE lang="php"&gt;Active =
SUMX (
    ADDCOLUMNS (
        SUMMARIZE (
            'Usage Data',
            'Usage Data'[CompanyID],
            'Usage Data'[gstClientID],
            'Usage Data'[CompanyName],
            'Usage Data'[ProductName]
        ),
        "@ClicksLast3Month", [Clicks Last 3 Months]
    ),
    IF ( [@ClicksLast3Month] &amp;gt;= 3, 1, 0 )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:28:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432822#M64833</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-01T19:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432834#M64834</link>
      <description>&lt;P&gt;I tried this and now it seems to be overcounting&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:38:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432834#M64834</guid>
      <dc:creator>rjiang</dc:creator>
      <dc:date>2022-04-01T19:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432836#M64835</link>
      <description>&lt;P&gt;Please send sample file. I'll to look into it&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:40:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432836#M64835</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-01T19:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432842#M64837</link>
      <description>&lt;P&gt;Do you have time slicer?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:50:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432842#M64837</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-01T19:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432848#M64838</link>
      <description>&lt;P&gt;Tou csn also try with CALCULATE&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="php"&gt;Activew =
SUMX (
    ADDCOLUMNS (
        SUMMARIZE ( 'Usage Data', 'Usage Data'[CompanyID], 'Usage Data'[gstClientID] ),
        "@ClicksLast3Month", [Clicks Last 3 Months]
    ),
    CALCULATE ( IF ( [@ClicksLast3Month] &amp;gt;= 3, 1, 0 ) )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 01 Apr 2022 19:55:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432848#M64838</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-01T19:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432909#M64841</link>
      <description>&lt;P&gt;I've uploaded the sample data here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1S5mw2j6yK11k18JuUA0tnWVGqniNGYCm/view?usp=sharing" target="_blank"&gt;https://drive.google.com/file/d/1S5mw2j6yK11k18JuUA0tnWVGqniNGYCm/view?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am expecting 2022-03 in the Active tab to evaluate to a total of 15,825&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 20:54:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432909#M64841</guid>
      <dc:creator>rjiang</dc:creator>
      <dc:date>2022-04-01T20:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432921#M64843</link>
      <description>&lt;P&gt;Sorry use this one instead&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1gnQj9E1XgFEZp1zZyS7USlPn88S6vRLv/view?usp=sharing" target="_blank"&gt;https://drive.google.com/file/d/1gnQj9E1XgFEZp1zZyS7USlPn88S6vRLv/view?usp=sharing&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 21:04:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432921#M64843</guid>
      <dc:creator>rjiang</dc:creator>
      <dc:date>2022-04-01T21:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX SUMMARIZE not working as intended</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432929#M64846</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I am expecting 2022-03 in the Active tab to evaluate to a total of 15,825&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1gnQj9E1XgFEZp1zZyS7USlPn88S6vRLv/view?usp=sharing" target="_blank" rel="nofollow noopener noreferrer"&gt;https://drive.google.com/file/d/1gnQj9E1XgFEZp1zZyS7USlPn88S6vRLv/view?usp=sharing&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 21:13:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-SUMMARIZE-not-working-as-intended/m-p/2432929#M64846</guid>
      <dc:creator>rjiang</dc:creator>
      <dc:date>2022-04-01T21:13:01Z</dc:date>
    </item>
  </channel>
</rss>

