<?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: Is Measure Branching a good idea for report performance in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1932950#M41985</link>
    <description>&lt;P&gt;So if I use CALCULATE then don't use that measure in another measure? Do you know where you heard it from Marco Russo? I am only 7 chapters in The Definitive Guide to DAX 2nd edition. I didn't see anything specific for measure branching in the contents.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 01 Jul 2021 10:34:51 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-07-01T10:34:51Z</dc:date>
    <item>
      <title>Is Measure Branching a good idea for report performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1931616#M41952</link>
      <description>&lt;P&gt;I have avoided using referencing measures inside other measures (Measure branching) because I heard from somewhere that was a bad idea (I don't remember where). But there seems to be a few including Enterprise DNA who think it is a good idea. I couldn't anything official from Microsoft that says this a good for performance. I plan on installing DAX Studio when my IT department adds it to the software whitelist so I can test it myself. But I was hoping to get confirmation from more sources that measure branching is a good idea before using it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 20:09:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1931616#M41952</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-30T20:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Is Measure Branching a good idea for report performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1931671#M41955</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;It depends &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;When you create a measure, it is wrapped in a CALCULATE function. It depends where you want to use it. If you do not need a context transition to happen for example in a row context then do not use measure there. However, Measure Branching, in general, doesn't affect the performance, it will is the same. I heard it from Marco Russo as well.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 20:34:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1931671#M41955</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2021-06-30T20:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is Measure Branching a good idea for report performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1932100#M41970</link>
      <description>&lt;P&gt;In my opinion, it is not a good idea when it references measures ( or references measures that already referenced other measures) that have ALLSELECTED function as a CALCULATE modifier (inside the CALCULATE function).&lt;/P&gt;&lt;P&gt;I only know the above case that I need to double-check and audit the result of the measure every time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Other than the above, I still need to learn and study whether there are any other cases that make Measure Branching not a good idea.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 03:29:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1932100#M41970</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2021-07-01T03:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Is Measure Branching a good idea for report performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1932950#M41985</link>
      <description>&lt;P&gt;So if I use CALCULATE then don't use that measure in another measure? Do you know where you heard it from Marco Russo? I am only 7 chapters in The Definitive Guide to DAX 2nd edition. I didn't see anything specific for measure branching in the contents.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 10:34:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1932950#M41985</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-07-01T10:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is Measure Branching a good idea for report performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1933292#M41995</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;No, I did not mean that way. You can use a measure inside another measure, all I meant was a measure is always wrapped within a calculate function, so when you use it inside another calculation, it will create context transition. I just stressed this point. So, you can use a measure inside another as long as you are aware of the context.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The following video explains the nested calculate usage:&amp;nbsp; &amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="41" data-lia-user-login="marcorusso" class="lia-mention lia-mention-user"&gt;marcorusso&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://youtu.be/hZd9EgUR7Do?t=3334" target="_blank"&gt;https://www.youtube.com/watch?v=hZd9EgUR7Do&amp;amp;t=3580s&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 13:47:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Is-Measure-Branching-a-good-idea-for-report-performance/m-p/1933292#M41995</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2021-07-01T13:47:45Z</dc:date>
    </item>
  </channel>
</rss>

