<?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 How to replace SUMMARIZE when it is depricated? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652124#M78232</link>
    <description>&lt;P&gt;I understand that the DAX function SUMMARIZE is deprecated and will eventually be removed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What alternative function can be used instead?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SUMMARIZECOLUMNS seems like the obvious one, but unfortunately it does not work within context transitions, so is not very useful.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Jul 2022 07:13:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-07-21T07:13:56Z</dc:date>
    <item>
      <title>How to replace SUMMARIZE when it is depricated?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652124#M78232</link>
      <description>&lt;P&gt;I understand that the DAX function SUMMARIZE is deprecated and will eventually be removed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What alternative function can be used instead?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SUMMARIZECOLUMNS seems like the obvious one, but unfortunately it does not work within context transitions, so is not very useful.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 07:13:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652124#M78232</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-21T07:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace SUMMARIZE when it is depricated?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652340#M78240</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;who said SUMMARIZE is deprecated?&amp;nbsp;&lt;BR /&gt;Do you have a reference for this announcement?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:32:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652340#M78240</guid>
      <dc:creator>SpartaBI</dc:creator>
      <dc:date>2022-07-21T08:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace SUMMARIZE when it is depricated?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652423#M78244</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you referring to this from dax.guide?&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;It's not the whole SUMMARIZE function that's deprecated, just the ability to add new columns to the grouped table.&lt;/P&gt;
&lt;P&gt;The recommended way to do that would be&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ADDCOLUMNS(
    SUMMARIZE(Table, Table[Column]),
    "New Column Name", &amp;lt;Expression&amp;gt;
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:58:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652423#M78244</guid>
      <dc:creator>PaulOlding</dc:creator>
      <dc:date>2022-07-21T08:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace SUMMARIZE when it is depricated?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652426#M78245</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="377293" data-lia-user-login="SpartaBI" class="lia-mention lia-mention-user"&gt;SpartaBI&lt;/a&gt;&amp;nbsp;, the relevant references are:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Desktop/DAX-Who-wants-a-challenge-with-SUMMARIZE/m-p/567891" target="_blank" rel="noopener"&gt;Solved: DAX: Who wants a challenge with SUMMARIZE? - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://dax.guide/summarize/" target="_blank" rel="noopener"&gt;SUMMARIZE – DAX Guide&lt;/A&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;But it appears that only part of the SUMMARIZE functionality is being depricated: the parameters to create columns and expressions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So in my case, I would need to replace this existing DAX measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Count Over 75 =
    SUMX(
        SUMMARIZE(
            'FactTable',
            'Employee'[EmpID],
            'Employee'[StoreID],
            'Project'[Project],
            "_Over75", IF([MeasureOfInterest] &amp;gt;= 75, 1)
        ),
        [_Over75]
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with this syntax:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Count Over 75 =
    SUMX(
        SUMMARIZE(
            'FactTable',
            'Employee'[EmpID],
            'Employee'[StoreID],
            'Project'[Project]
        ),
        IF([MeasureOfInterest] &amp;gt;= 75, 1)
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:59:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652426#M78245</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-21T08:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace SUMMARIZE when it is depricated?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652431#M78246</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;what&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="150936" data-lia-user-login="PaulOlding" class="lia-mention lia-mention-user"&gt;PaulOlding&lt;/a&gt;&amp;nbsp;said &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 08:59:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652431#M78246</guid>
      <dc:creator>SpartaBI</dc:creator>
      <dc:date>2022-07-21T08:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace SUMMARIZE when it is depricated?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652438#M78248</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;I wrote the code for your case:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Count Over 75 =
    SUMX(
    	ADDCOLUMNS(
	        SUMMARIZE(
	            'FactTable',
	            'Employee'[EmpID],
	            'Employee'[StoreID],
	            'Project'[Project]
	        ),
          	"_Over75", IF([MeasureOfInterest] &amp;gt;= 75, 1),
        ),
        [_Over75]
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;img /&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;img /&gt;&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;A href="https://www.linkedin.com/company/spartabi" target="_blank" rel="noopener"&gt;&lt;img /&gt;&lt;/A&gt; &amp;nbsp;&amp;nbsp;&lt;A href="https://www.facebook.com/SpartaBI" target="_blank" rel="noopener"&gt;&lt;img /&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Data-Stories-Gallery/Contoso-by-SpartaBI/m-p/2449543" target="_blank" rel="noopener"&gt;&lt;FONT size="4" color="#0000EE"&gt;Showcase Report – Contoso By SpartaBI&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 09:02:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-SUMMARIZE-when-it-is-depricated/m-p/2652438#M78248</guid>
      <dc:creator>SpartaBI</dc:creator>
      <dc:date>2022-07-21T09:02:16Z</dc:date>
    </item>
  </channel>
</rss>

