<?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: Measure using Summarize is running out of memory in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2195168#M51397</link>
    <description>&lt;P&gt;It looks like Measure2 might be able to be pulled out of the iterator, which could potentially make a big difference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MeasureA =
VAR M2 = [Measure2]
RETURN
    SUMX (
        SUMMARIZE (
            'Table1',
            'Table'[Col 1],
            "Savings",
                VAR Calc =
                    ( [Measure1] - M2 ) * [Measure3] * SUM ( 'Table2'[Col2] )
                RETURN
                    IF ( Calc &amp;lt; 0, 0, Calc )
        ),
        [Savings]
    )&lt;/LI-CODE&gt;</description>
    <pubDate>Wed, 17 Nov 2021 19:37:24 GMT</pubDate>
    <dc:creator>AlexisOlson</dc:creator>
    <dc:date>2021-11-17T19:37:24Z</dc:date>
    <item>
      <title>Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2193205#M51306</link>
      <description>&lt;P&gt;How can I optimize this measure and its DAX to reduce memory consumption? When interacting with filters visual runs out of memory to update since the data set is large&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MeasureA&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;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table1'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Table'[Col 1]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"Savings"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Measure1]&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;[Measure2]&lt;/SPAN&gt;&lt;SPAN&gt;)*&lt;/SPAN&gt;&lt;SPAN&gt;[Measure3]&lt;/SPAN&gt;&lt;SPAN&gt;*&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table2'[Col2]&lt;/SPAN&gt;&lt;SPAN&gt;)&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;0&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;[Measure1]&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;[Measure2]&lt;/SPAN&gt;&lt;SPAN&gt;)*&lt;/SPAN&gt;&lt;SPAN&gt;[Measure3]&lt;/SPAN&gt;&lt;SPAN&gt;*&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table2'[Col 2]&lt;/SPAN&gt;&lt;SPAN&gt;))),&lt;/SPAN&gt;&lt;SPAN&gt;[Savings]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 16 Nov 2021 20:24:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2193205#M51306</guid>
      <dc:creator>einsnew</dc:creator>
      <dc:date>2021-11-16T20:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2193230#M51309</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="339159" data-lia-user-login="einsnew" class="lia-mention lia-mention-user"&gt;einsnew&lt;/a&gt;&amp;nbsp; can you try this&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MeasureA =
VAR _m1 = [Measure1]
VAR _m2 = [Measure2]
VAR _m3 = [Measure3]
VAR _sum =
    SUM ( 'Table2'[Col2] )
VAR _equation = ( _m1 - _m2 ) * [m3] * _sum
VAR _cond =
    IF ( _equation &amp;lt; 0, 0, _equation )
RETURN
    SUMX (
        ADDCOLUMNS ( SUMMARIZE ( 'Table1', 'Table'[Col 1] ), "Savings", _cond ),
        [Savings]
    )
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 16 Nov 2021 20:48:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2193230#M51309</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-11-16T20:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2193240#M51310</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;&amp;nbsp;for your input. I tried the approach in a subset to compare performance but (1) it took similar time to execute and (2) the result was corrupted, changing for a value in the millions unit to a bn unit. Any other ideas? (p.s. in the code you shared I had to change [m3] by _m3&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 21:02:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2193240#M51310</guid>
      <dc:creator>einsnew</dc:creator>
      <dc:date>2021-11-16T21:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2193243#M51313</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="339159" data-lia-user-login="einsnew" class="lia-mention lia-mention-user"&gt;einsnew&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;in the code you shared I had to change [m3] by _m3 - noticed that and sorry about it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;How did you write Measure1,Measure2 and Measure3?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 21:05:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2193243#M51313</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-11-16T21:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2193338#M51322</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;&amp;nbsp;You can use a variable to avoid repeating the calculation twice but you can't take it out of the SUMMARIZE unless the measures are independent of Table[Col 1] (the measures are evaluated within the filter context induced by the context transition).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I.e., this should be fine (though it won't necessarily fix the memory issue).&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MeasureA =
SUMX (
    SUMMARIZE (
        'Table1',
        'Table'[Col 1],
        "Savings",
            VAR Calc =
                ( [Measure1] - [Measure2] ) * [Measure3] * SUM ( 'Table2'[Col2] )
            RETURN
                IF ( Calc &amp;lt; 0, 0, Calc )
    ),
    [Savings]
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="339159" data-lia-user-login="einsnew" class="lia-mention lia-mention-user"&gt;einsnew&lt;/a&gt;&amp;nbsp;Can any of the measures be pre-computed outside of the SUMMARIZE or do they all depend on Table[Col 1]?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 22:55:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2193338#M51322</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-11-16T22:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2194611#M51376</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;&amp;nbsp;the other measures are as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure1 = CALCULATE(DIVIDE(SUM('Table1'[Col4]),SUM('Table2'[Col2]),BLANK()))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure2 = CALCULATE(&lt;BR /&gt;MEDIANX(&lt;BR /&gt;SUMMARIZE('Table1', 'Table1'[Col5],'Table1'[Col8],'Table3'[Col6],'Table3'[Col7],"Parts",&lt;BR /&gt;ROUNDDOWN([Measure1],0)&lt;BR /&gt;),[Parts]),&lt;BR /&gt;ALLEXCEPT( 'Table1','Table3'[Col7],'Table1'[Col8] )&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure3 = DIVIDE(SUM('Table1'[Col3]),SUM('Table1'[Col4]),BLANK())&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 14:46:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2194611#M51376</guid>
      <dc:creator>einsnew</dc:creator>
      <dc:date>2021-11-17T14:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2195145#M51396</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="339159" data-lia-user-login="einsnew" class="lia-mention lia-mention-user"&gt;einsnew&lt;/a&gt;&amp;nbsp; I am having trouble visualizing the model and corresponding calculations. Is it possible for you to produce the model in a small scale and post here please with desired output clearly mentioned.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 19:19:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2195145#M51396</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-11-17T19:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2195168#M51397</link>
      <description>&lt;P&gt;It looks like Measure2 might be able to be pulled out of the iterator, which could potentially make a big difference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MeasureA =
VAR M2 = [Measure2]
RETURN
    SUMX (
        SUMMARIZE (
            'Table1',
            'Table'[Col 1],
            "Savings",
                VAR Calc =
                    ( [Measure1] - M2 ) * [Measure3] * SUM ( 'Table2'[Col2] )
                RETURN
                    IF ( Calc &amp;lt; 0, 0, Calc )
        ),
        [Savings]
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 17 Nov 2021 19:37:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2195168#M51397</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-11-17T19:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2209305#M52088</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;, this one helped to improve performance with the right results. Still memory issue is there, so in the meantime I am limiting the scope that goes into the calculation with other filters but that is not the intention.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems the calculation of Measure2 itself is aslo heavy and checking details of outcome I noticed that the result of that MEDIANX operator is impacted if there are blanks in the "Measure1". I confirmed that behaviour with a dummy table. How can I avoid considering the blanks in the MEDIANX and how could it be more efficient?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Nov 2021 10:43:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2209305#M52088</guid>
      <dc:creator>einsnew</dc:creator>
      <dc:date>2021-11-26T10:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2209885#M52119</link>
      <description>&lt;P&gt;I can't promise this will help but try rewriting Measure like this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure2 =
VAR Summary =
    CALCULATE (
        SUMMARIZE (
            'Table1',
            'Table1'[Col5],
            'Table1'[Col8],
            'Table3'[Col6],
            'Table3'[Col7]
        ),
        ALLEXCEPT ( 'Table1', 'Table3'[Col7], 'Table1'[Col8] )
    )
VAR AddCols =
    ADDCOLUMNS (
        Summary,
        "@Col4", CALCULATE ( SUM ( 'Table1'[Col4] ) ),
        "@Col2", CALCULATE ( SUM ( 'Table1'[Col2] ) )
    )
RETURN
    MEDIANX (
        FILTER ( AddCols, NOT ISBLANK ( [@Col2] ) ),
        INT ( [@Col4] / [@Col2] )
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 26 Nov 2021 18:50:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2209885#M52119</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-11-26T18:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2210071#M52120</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="339159" data-lia-user-login="einsnew" class="lia-mention lia-mention-user"&gt;einsnew&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is generally recommended to use SUMMARIZECOLUMNS(), not SUMMARIZE()&lt;BR /&gt;&lt;A href="https://www.sqlbi.com/articles/introducing-summarizecolumns/" target="_blank"&gt;https://www.sqlbi.com/articles/introducing-summarizecolumns/&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Desktop/Summarize-VS-Summarizecolumn-function-in-DAX/m-p/928113" target="_blank"&gt;https://community.powerbi.com/t5/Desktop/Summarize-VS-Summarizecolumn-function-in-DAX/m-p/928113&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dax/summarizecolumns-function-dax" target="_blank"&gt;https://docs.microsoft.com/en-us/dax/summarizecolumns-function-dax&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Let me know if you have any questions.&lt;BR /&gt;&lt;BR /&gt;If this solves your issues, please mark it as the &lt;STRONG&gt;solution, &lt;/STRONG&gt;so that others can find it easily. &lt;STRONG&gt;Kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;are nice too.&lt;BR /&gt;Nathaniel&lt;/P&gt;</description>
      <pubDate>Fri, 26 Nov 2021 23:07:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2210071#M52120</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2021-11-26T23:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2210131#M52125</link>
      <description>&lt;P&gt;SUMMARIZECOLUMNS is great for writing queries but has limited much more limited use within measures due to its inability to support context transition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the comments in your first link:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;STRONG&gt;Marco Russo&lt;/STRONG&gt;: Correct, you should use ADDCOLUMNS / SUMMARIZE in measures, whereas SUMMARIZECOLUMNS doesn't support context transition so it cannot be used in most of the measures.&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have indeed committed the grave sin of using SUMMARIZE to create new columns in at least one of my comments here but my most recent one used the ADDCOLUMNS ( SUMMARIZE ( ... ), ... ) pattern properly in a way that cannot be replaced by SUMMARIZECOLUMNS.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Nov 2021 02:28:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2210131#M52125</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-11-27T02:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Measure using Summarize is running out of memory</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2210133#M52126</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;, Thank you for pointing that out!&lt;/P&gt;</description>
      <pubDate>Sat, 27 Nov 2021 02:30:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-using-Summarize-is-running-out-of-memory/m-p/2210133#M52126</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2021-11-27T02:30:54Z</dc:date>
    </item>
  </channel>
</rss>

