<?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 Sequence of calculations in DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970602#M99246</link>
    <description>&lt;P&gt;Hi community,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cannot find the answer to this simple question:&lt;/P&gt;&lt;P&gt;with the textbook example&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ListPriceRanking =
COUNTROWS (
    FILTER (
        VALUES ( 'Product'[List Price] ),
        'Product'[List Price] &amp;gt; EARLIER ( 'Product'[List Price] )
    )
) + 1&lt;/LI-CODE&gt;&lt;P&gt;does the engine calculate in the sequence that is suggested: first inner loop with the inner row context.&amp;nbsp; Then calculate whatever is as filter context outside (which is obviously not visible here) . This is presumbably answered already. Please refer me to the link.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;</description>
    <pubDate>Thu, 15 Dec 2022 11:15:02 GMT</pubDate>
    <dc:creator>scee07</dc:creator>
    <dc:date>2022-12-15T11:15:02Z</dc:date>
    <item>
      <title>Sequence of calculations in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970602#M99246</link>
      <description>&lt;P&gt;Hi community,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cannot find the answer to this simple question:&lt;/P&gt;&lt;P&gt;with the textbook example&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ListPriceRanking =
COUNTROWS (
    FILTER (
        VALUES ( 'Product'[List Price] ),
        'Product'[List Price] &amp;gt; EARLIER ( 'Product'[List Price] )
    )
) + 1&lt;/LI-CODE&gt;&lt;P&gt;does the engine calculate in the sequence that is suggested: first inner loop with the inner row context.&amp;nbsp; Then calculate whatever is as filter context outside (which is obviously not visible here) . This is presumbably answered already. Please refer me to the link.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 11:15:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970602#M99246</guid>
      <dc:creator>scee07</dc:creator>
      <dc:date>2022-12-15T11:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Sequence of calculations in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970640#M99247</link>
      <description>&lt;P&gt;Hi Christian &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="97900" data-lia-user-login="scee07" class="lia-mention lia-mention-user"&gt;scee07&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is the question?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 11:34:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970640#M99247</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-12-15T11:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sequence of calculations in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970657#M99250</link>
      <description>&lt;P&gt;The question is: what is the real&amp;nbsp; sequence of calculations in the engine? Always first filter context, then inner row context. The other way round, or some parallelization? Or depending on some criteria?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 11:44:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970657#M99250</guid>
      <dc:creator>scee07</dc:creator>
      <dc:date>2022-12-15T11:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Sequence of calculations in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970691#M99253</link>
      <description>&lt;P&gt;For most functions/expressions, from inside out, from left to right, from top down.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But CALCULATE is very different, it starts with all the argument and keep the first argument evaluated last.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 12:00:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970691#M99253</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-12-15T12:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sequence of calculations in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970744#M99257</link>
      <description>&lt;P&gt;Great, this is exactly what I wanted to know.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 12:25:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sequence-of-calculations-in-DAX/m-p/2970744#M99257</guid>
      <dc:creator>scee07</dc:creator>
      <dc:date>2022-12-15T12:25:22Z</dc:date>
    </item>
  </channel>
</rss>

