<?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: Performance semantic model measure vs custom measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2215831#M52451</link>
    <description>&lt;P&gt;I don't think it has anything to do with Power BI. I think it's more because of how the Query Optimizer optimizes the measures.&lt;/P&gt;&lt;P&gt;Here is the query with a running time of 15 seconds:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;-- Semantic Model
// DAX Query
DEFINE
  VAR __DS0FilterTable = 
    FILTER(
      KEEPFILTERS(VALUES('DIM.BI_Datum'[Datum])),
      'DIM.BI_Datum'[Datum] &amp;lt; DATE(2021, 11, 16)
    )

  VAR __DS0FilterTable2 = 
    TREATAS({"19144"}, 'DIM.SAP_Personal_Daten__Besitzer'[Personalnummer_Master])

EVALUATE
  SUMMARIZECOLUMNS(
    __DS0FilterTable,
    __DS0FilterTable2,
    "Neukunde_DIV_SUM", IGNORE('FACT.Measure'[Neukunde_DIV_SUM])
  )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the query with a running time of 1 seconds:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;-- Custom Measure
// DAX Query
DEFINE
  MEASURE 'CUSTOM.Measure'[CM_Neukunde_DIV_SUM] = 
    (/* USER DAX BEGIN */

VAR ST = LASTDATE('DIM.BI_Datum'[Datum])

RETURN 
CALCULATE(
    SUMX(
        SUMMARIZE(
            FILTER(
                'FACT.TJ_Rechnungsausgangsjournal'
                , RELATED('DIM.TJ_Auftrag'[Erstellt]) &amp;gt;= CALCULATE('FACT.Measure'[Datum_VM_Relevant_Seit], 'DIM.BI_Datum'[Datum] &amp;lt;= ST)
                &amp;amp;&amp;amp;
                RELATED('DIM.TJ_Rechnungsausgangsjournal'[Ist_Fakturiert]) = "J"
                )
            ,'DIM.TJ_Auftrag'[Erstellt]
            ,'DIM.TJ_Unternehmen'[Nummer]
            ,'DIM.BI_Kostenstelle'[DIV_Kurzname]
            ,"IstNeukunde"
            ,IF(
               CALCULATE(
                   'FACT.Measure'[TJ_Leistungsnachweis_Umsatz_per_VM_SUM]
                   ,ALLEXCEPT(
                       'FACT.TJ_Rechnungsausgangsjournal'
                       ,'DIM.TJ_Unternehmen'[Nummer]
                       ,'DIM.BI_Kostenstelle'[DIV_Kurzname]
                   )
                   ,FILTER(DATUM_ALL, 'DIM.BI_Datum'[Datum] &amp;lt; 'DIM.TJ_Auftrag'[Erstellt])
                   ,KEEPFILTERS('FILTER.VM_Relevant'[Ist_VM_Relevant] = "N")
                   ,KEEPFILTERS('FILTER.VM_Relevant_STO_GES_DIV'[Ist_VM_Relevant_STO_GES_DIV] = "N")
                   ,KEEPFILTERS('FILTER.VM_Relevant_KST'[Ist_VM_Relevant_KST] = "N")
               ) = 0
               &amp;amp;&amp;amp;
               NOT CALCULATE(
                   'FACT.Measure'[TJ_Leistungsnachweis_Umsatz_per_VM_SUM]
                   ,ALLEXCEPT(
                       'FACT.TJ_Rechnungsausgangsjournal'
                       ,'DIM.TJ_Unternehmen'[Nummer]
                   )
                   ,FILTER(DATUM_ALL, 'DIM.BI_Datum'[Datum] &amp;lt; 'DIM.TJ_Auftrag'[Erstellt])
                   ,KEEPFILTERS('FILTER.VM_Relevant'[Ist_VM_Relevant] = "N")
                   ,KEEPFILTERS('FILTER.VM_Relevant_STO_GES_DIV'[Ist_VM_Relevant_STO_GES_DIV] = "N")
                   ,KEEPFILTERS('FILTER.VM_Relevant_KST'[Ist_VM_Relevant_KST] = "N")
               ) = 0
               , 1
               ,BLANK()
            )
        )
        ,[IstNeukunde]
    )
    ,USERELATIONSHIP('DIM.TJ_Auftrag'[Erstellt], 'DIM.BI_Datum'[Datum])
)
/* USER DAX END */)

  VAR __DS0FilterTable = 
    FILTER(
      KEEPFILTERS(VALUES('DIM.BI_Datum'[Datum])),
      'DIM.BI_Datum'[Datum] &amp;lt; DATE(2021, 11, 16)
    )

  VAR __DS0FilterTable2 = 
    TREATAS({"19144"}, 'DIM.SAP_Personal_Daten__Besitzer'[Personalnummer_Master])

EVALUATE
  SUMMARIZECOLUMNS(
    __DS0FilterTable,
    __DS0FilterTable2,
    "CM_Neukunde_DIV_SUM", IGNORE('CUSTOM.Measure'[CM_Neukunde_DIV_SUM])
  )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'CUSTOM.Measure'[CM_Neukunde_DIV_SUM] is exact the same as 'FACT.Measure'[Neukunde_DIV_SUM]&lt;/P&gt;</description>
    <pubDate>Wed, 01 Dec 2021 09:26:50 GMT</pubDate>
    <dc:creator>Credential</dc:creator>
    <dc:date>2021-12-01T09:26:50Z</dc:date>
    <item>
      <title>Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2214193#M52338</link>
      <description>&lt;P&gt;Hello together,&lt;BR /&gt;I have a question about custom measures. I have created a measure in my semantic model which is quite slow.&lt;BR /&gt;The measure takes about 15 seconds. If I define the same measure as a custom measure in Power BI or DAX Studio, the measure takes only 1 second. Can anyone tell me what is the reason for this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 14:18:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2214193#M52338</guid>
      <dc:creator>Credential</dc:creator>
      <dc:date>2021-11-30T14:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2214642#M52375</link>
      <description>&lt;P&gt;What semantic model are you referring to?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 18:07:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2214642#M52375</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-11-30T18:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2214780#M52383</link>
      <description>&lt;P&gt;Sorry, it's a ssas tabular model 1500&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 19:53:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2214780#M52383</guid>
      <dc:creator>Credential</dc:creator>
      <dc:date>2021-11-30T19:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2214848#M52386</link>
      <description>&lt;P&gt;Power BI is fundamentally pretty similar to SSAS under the hood but is updated more frequently. In the last couple of years, there have been some optimizations that could potentially make a large difference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As an example, the &lt;A href="https://powerbi.microsoft.com/en-us/blog/power-bi-report-server-may-2021-feature-summary/#perf" target="_blank"&gt;May 2020 update&lt;/A&gt;&amp;nbsp;improved performance issues I explained &lt;A href="https://stackoverflow.com/questions/61805513/force-dax-switch-function-to-use-strict-lazy-short-circuit-evaluation" target="_blank"&gt;here&lt;/A&gt;. The&amp;nbsp;&lt;A href="https://powerbi.microsoft.com/en-us/blog/power-bi-october-2021-feature-summary/#post-17563-_Toc84518686" target="_self"&gt;October 2021 update&lt;/A&gt; also included some optimizations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I understand correctly, the latest major version of SSAS is for SQL Server 2019, although there have been "cumulative updates" within the last couple of months.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is all largely speculation since I don't actually know what your measures are and what versions of things you're running (and even if I did, I'd have to do some deep digging to isolate differences).&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 21:07:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2214848#M52386</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-11-30T21:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2214995#M52394</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="276474" data-lia-user-login="Credential" class="lia-mention lia-mention-user"&gt;Credential&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;When you say, the measure takes 15 seconds. How did you come up with that number?&amp;nbsp;&lt;BR /&gt;Is it when you use the measure inside the report?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 00:27:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2214995#M52394</guid>
      <dc:creator>m3tr01d</dc:creator>
      <dc:date>2021-12-01T00:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2215831#M52451</link>
      <description>&lt;P&gt;I don't think it has anything to do with Power BI. I think it's more because of how the Query Optimizer optimizes the measures.&lt;/P&gt;&lt;P&gt;Here is the query with a running time of 15 seconds:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;-- Semantic Model
// DAX Query
DEFINE
  VAR __DS0FilterTable = 
    FILTER(
      KEEPFILTERS(VALUES('DIM.BI_Datum'[Datum])),
      'DIM.BI_Datum'[Datum] &amp;lt; DATE(2021, 11, 16)
    )

  VAR __DS0FilterTable2 = 
    TREATAS({"19144"}, 'DIM.SAP_Personal_Daten__Besitzer'[Personalnummer_Master])

EVALUATE
  SUMMARIZECOLUMNS(
    __DS0FilterTable,
    __DS0FilterTable2,
    "Neukunde_DIV_SUM", IGNORE('FACT.Measure'[Neukunde_DIV_SUM])
  )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the query with a running time of 1 seconds:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;-- Custom Measure
// DAX Query
DEFINE
  MEASURE 'CUSTOM.Measure'[CM_Neukunde_DIV_SUM] = 
    (/* USER DAX BEGIN */

VAR ST = LASTDATE('DIM.BI_Datum'[Datum])

RETURN 
CALCULATE(
    SUMX(
        SUMMARIZE(
            FILTER(
                'FACT.TJ_Rechnungsausgangsjournal'
                , RELATED('DIM.TJ_Auftrag'[Erstellt]) &amp;gt;= CALCULATE('FACT.Measure'[Datum_VM_Relevant_Seit], 'DIM.BI_Datum'[Datum] &amp;lt;= ST)
                &amp;amp;&amp;amp;
                RELATED('DIM.TJ_Rechnungsausgangsjournal'[Ist_Fakturiert]) = "J"
                )
            ,'DIM.TJ_Auftrag'[Erstellt]
            ,'DIM.TJ_Unternehmen'[Nummer]
            ,'DIM.BI_Kostenstelle'[DIV_Kurzname]
            ,"IstNeukunde"
            ,IF(
               CALCULATE(
                   'FACT.Measure'[TJ_Leistungsnachweis_Umsatz_per_VM_SUM]
                   ,ALLEXCEPT(
                       'FACT.TJ_Rechnungsausgangsjournal'
                       ,'DIM.TJ_Unternehmen'[Nummer]
                       ,'DIM.BI_Kostenstelle'[DIV_Kurzname]
                   )
                   ,FILTER(DATUM_ALL, 'DIM.BI_Datum'[Datum] &amp;lt; 'DIM.TJ_Auftrag'[Erstellt])
                   ,KEEPFILTERS('FILTER.VM_Relevant'[Ist_VM_Relevant] = "N")
                   ,KEEPFILTERS('FILTER.VM_Relevant_STO_GES_DIV'[Ist_VM_Relevant_STO_GES_DIV] = "N")
                   ,KEEPFILTERS('FILTER.VM_Relevant_KST'[Ist_VM_Relevant_KST] = "N")
               ) = 0
               &amp;amp;&amp;amp;
               NOT CALCULATE(
                   'FACT.Measure'[TJ_Leistungsnachweis_Umsatz_per_VM_SUM]
                   ,ALLEXCEPT(
                       'FACT.TJ_Rechnungsausgangsjournal'
                       ,'DIM.TJ_Unternehmen'[Nummer]
                   )
                   ,FILTER(DATUM_ALL, 'DIM.BI_Datum'[Datum] &amp;lt; 'DIM.TJ_Auftrag'[Erstellt])
                   ,KEEPFILTERS('FILTER.VM_Relevant'[Ist_VM_Relevant] = "N")
                   ,KEEPFILTERS('FILTER.VM_Relevant_STO_GES_DIV'[Ist_VM_Relevant_STO_GES_DIV] = "N")
                   ,KEEPFILTERS('FILTER.VM_Relevant_KST'[Ist_VM_Relevant_KST] = "N")
               ) = 0
               , 1
               ,BLANK()
            )
        )
        ,[IstNeukunde]
    )
    ,USERELATIONSHIP('DIM.TJ_Auftrag'[Erstellt], 'DIM.BI_Datum'[Datum])
)
/* USER DAX END */)

  VAR __DS0FilterTable = 
    FILTER(
      KEEPFILTERS(VALUES('DIM.BI_Datum'[Datum])),
      'DIM.BI_Datum'[Datum] &amp;lt; DATE(2021, 11, 16)
    )

  VAR __DS0FilterTable2 = 
    TREATAS({"19144"}, 'DIM.SAP_Personal_Daten__Besitzer'[Personalnummer_Master])

EVALUATE
  SUMMARIZECOLUMNS(
    __DS0FilterTable,
    __DS0FilterTable2,
    "CM_Neukunde_DIV_SUM", IGNORE('CUSTOM.Measure'[CM_Neukunde_DIV_SUM])
  )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'CUSTOM.Measure'[CM_Neukunde_DIV_SUM] is exact the same as 'FACT.Measure'[Neukunde_DIV_SUM]&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 09:26:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2215831#M52451</guid>
      <dc:creator>Credential</dc:creator>
      <dc:date>2021-12-01T09:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2216538#M52486</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="276474" data-lia-user-login="Credential" class="lia-mention lia-mention-user"&gt;Credential&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I don't think it has anything to do with Power BI. I think it's more because of how the Query Optimizer optimizes the measures.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I was suggesting that it likely does have to do with the query optimizer but this is, in fact, related to Power BI updates. When you run a query in DAX Studio, it connects to the Power BI tabular analysis server, either a .pbix you have open locally or a dataset in the service (it doesn't have its own DAX engine).&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 17:01:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2216538#M52486</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-12-01T17:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2218040#M52543</link>
      <description>&lt;P&gt;But we only use SSAS tabular 1500 on premise. What does this have to do with Power BI updates?&lt;BR /&gt;The measure is defined once in the tabular model itself and once in the query itself. Both queries are sent to SSAS tabular 1500 and evaluated there via the FE and SE, right?&lt;/P&gt;&lt;P&gt;What I do not understand?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 11:47:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2218040#M52543</guid>
      <dc:creator>Credential</dc:creator>
      <dc:date>2021-12-02T11:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2218429#M52563</link>
      <description>&lt;P&gt;OK. I may not have fully understood the specifics of your question. Let me make sure we're on the same page. Is the following accurate?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You are using Power BI with a live connection to an SSAS tabular model (not Import or DirectQuery). You have a measure that performs better as a Report Level Measure (as defined &lt;A href="https://radacad.com/live-connection-when-power-bi-comes-hybrid" target="_blank"&gt;here&lt;/A&gt;) than the same measure defined within the SSAS model.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 15:31:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2218429#M52563</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-12-02T15:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2218517#M52572</link>
      <description>&lt;P&gt;Yes, that's correct.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 16:16:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2218517#M52572</guid>
      <dc:creator>Credential</dc:creator>
      <dc:date>2021-12-02T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2218830#M52609</link>
      <description>&lt;P&gt;That is indeed quite strange. I can't think of a good reason for a Report Level Measure to be&amp;nbsp;&lt;EM&gt;faster&lt;/EM&gt; than the same measure defined in the tabular model. Can you verify that it's not related to caching?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 20:56:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2218830#M52609</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-12-02T20:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Performance semantic model measure vs custom measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2220056#M52659</link>
      <description>&lt;P&gt;I know and don't understand either.&lt;BR /&gt;We always execute the queries in DAX Studio with a cleared cache. I have no idea why the one time 17 queries and the other time 35 queries are executed on SE.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Dec 2021 13:30:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Performance-semantic-model-measure-vs-custom-measure/m-p/2220056#M52659</guid>
      <dc:creator>Credential</dc:creator>
      <dc:date>2021-12-03T13:30:42Z</dc:date>
    </item>
  </channel>
</rss>

