<?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 taking too long in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3031622#M103606</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="443516" data-lia-user-login="ppm1" class="lia-mention lia-mention-user"&gt;ppm1&lt;/a&gt;&amp;nbsp;, thanks for your reply. The code does give me the result but it does not improve the performance. I'll explain the measures leading to this measure in a post just below this and tag you again. Hopefully, you can find something which I could not see!&lt;/P&gt;</description>
    <pubDate>Thu, 19 Jan 2023 14:45:49 GMT</pubDate>
    <dc:creator>Ackbar-Learner</dc:creator>
    <dc:date>2023-01-19T14:45:49Z</dc:date>
    <item>
      <title>Measure taking too long</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3029560#M103477</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a measure which is taking too long to calculate. All measures which precede this delaying measure are ok and do not take much time. See measure below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10d7TaxAmountWithSignActualBudgetActualized = 
VAR Result = [Board10cP&amp;amp;LAllTransactionAmountwithSignBudgetActualized]
VAR TaxApplicable = -1*if([Board10d6TaxCalcCumulativeActualBudgetActualized]&amp;gt;[Board10d5TaxCalcPeriodActualBudgetActualized],[Board10d5TaxCalcPeriodActualBudgetActualized],[Board10d6TaxCalcCumulativeActualBudgetActualized])
RETURN
	calculate(if(if(HASONEVALUE(TabPLGLItem[GLItem]),values(TabPLGLItem[GLItem]))="Tax",TaxApplicable,Result))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just after this measure, i made another measure to summarize this one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10d8PLTaxAmountWithSignActualBudgetActualized = 
SUMX (
    SUMMARIZE (TabPLGLItem,[GLItem]),
    CALCULATE (
        VAR result = [Board10d7TaxAmountWithSignActualBudgetActualized]
        RETURN
            result
            )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea to make this more efficient!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 19:57:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3029560#M103477</guid>
      <dc:creator>Ackbar-Learner</dc:creator>
      <dc:date>2023-01-18T19:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Measure taking too long</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3029877#M103500</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435924" data-lia-user-login="Ackbar-Learner" class="lia-mention lia-mention-user"&gt;Ackbar-Learner&lt;/a&gt;&amp;nbsp;if's usually cost performance issue , id suggest putting them into a VAR&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10d8PLTaxAmountWithSignActualBudgetActualized = 
VAR
Result = SUMX (
    SUMMARIZE (TabPLGLItem,[GLItem]),
    CALCULATE (
        [Board10d7TaxAmountWithSignActualBudgetActualized]
)
RETURN
result&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 19 Jan 2023 00:14:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3029877#M103500</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-19T00:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: Measure taking too long</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3029908#M103503</link>
      <description>&lt;P&gt;Please try this expression for your first measure instead.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10d7TaxAmountWithSignActualBudgetActualized =
VAR Result = [Board10cP&amp;amp;LAllTransactionAmountwithSignBudgetActualized]
VAR TaxApplicable =
    -1
        * MIN (
            [Board10d5TaxCalcPeriodActualBudgetActualized],
            [Board10d6TaxCalcCumulativeActualBudgetActualized]
        )
RETURN
    IF ( SELECTEDVALUE ( TabPLGLItem[GLItem] ) = "Tax", TaxApplicable, Result )&lt;/LI-CODE&gt;&lt;P&gt;Pat&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 00:39:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3029908#M103503</guid>
      <dc:creator>ppm1</dc:creator>
      <dc:date>2023-01-19T00:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Measure taking too long</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3031622#M103606</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="443516" data-lia-user-login="ppm1" class="lia-mention lia-mention-user"&gt;ppm1&lt;/a&gt;&amp;nbsp;, thanks for your reply. The code does give me the result but it does not improve the performance. I'll explain the measures leading to this measure in a post just below this and tag you again. Hopefully, you can find something which I could not see!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 14:45:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3031622#M103606</guid>
      <dc:creator>Ackbar-Learner</dc:creator>
      <dc:date>2023-01-19T14:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Measure taking too long</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3031624#M103607</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;, thanks for your reply. The code does give me the result but it does not improve the performance. I'll explain the measures leading to this measure in a post just below this and tag you again. Hopefully, you can find something which I could not see!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 14:46:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3031624#M103607</guid>
      <dc:creator>Ackbar-Learner</dc:creator>
      <dc:date>2023-01-19T14:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Measure taking too long</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3032222#M103688</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="443516" data-lia-user-login="ppm1" class="lia-mention lia-mention-user"&gt;ppm1&lt;/a&gt;&amp;nbsp; Anonymous&lt;/a&gt;&amp;nbsp; This is an accounting visual that we are trying to build. All the measures are working but only that it is taking far too long as from the measure on tax. In summary, this is what I did:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I have a fact table coming from an odata, which contains actual figures. Measure to read Actuals below&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board01aTabPLGL = min(TabPLGLItem[Calc Type])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Board01P&amp;amp;LAllTransactionAmountwithSign = sumx(GLChartOfAccounts,[P&amp;amp;LAllTransactionAmountEUR]*GLChartOfAccounts[Sign])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Board02P&amp;amp;LRunningTotal = if(
     HASONEFILTER(TabPLGLItem[GLItem])
     ,
     CALCULATE(
             [Board01P&amp;amp;LAllTransactionAmountwithSign]
             ,
             ALL(TabPLGLItem[GLItem])
             ,
             TabPLGLItem[Index] &amp;lt;= VALUES(TabPLGLItem[Index])
             )
     ,
     blank()
)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Board03P&amp;amp;LActualAmount = SWITCH(
	[HeaderCalcType]
	,
	BLANK(),BLANK()
	,
	1,[Board01P&amp;amp;LAllTransactionAmountwithSign]
	,
	2,[Board02P&amp;amp;LRunningTotal]
)&lt;/LI-CODE&gt;&lt;P&gt;2.&amp;nbsp;I have another fact table coming from PowerPivot through Direct Query, which contains budget figures. The DAX code for this is exactly the same as Actuals, except for the naming&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. I then created a P&amp;amp;L containing 2 columns, 1 for Actual &amp;amp; 1 for Budget in 1 matrix visual&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. I now want to create a third column named Actualized Budget. This will add all actual amounts before and upto the date selected and add all budget amounts after the date selected. Measure is given below:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10aFirstDateSelected = FIRSTDATE(BudgetCalendar[Date])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Board10aLastDateSelected = LASTDATE(BudgetCalendar[Date])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Board10c1AllTransactionAmountwithSignActualBudgetActualized = 

VAR SeparatorDate = if(and(TODAY()&amp;gt;[Board10aFirstDateSelected], TODAY()&amp;gt; [Board10aLastDateSelected]),[Board10aLastDateSelected],TODAY())

VAR ActualizedActual = CALCULATE([Board01P&amp;amp;LAllTransactionAmountwithSign],filter(BudgetCalendar,BudgetCalendar[Date]&amp;lt;=SeparatorDate))

VAR ActualizedBudget = CALCULATE([AmountWithSign],filter(BudgetCalendar,BudgetCalendar[Date]&amp;gt;SeparatorDate))

RETURN
    ActualizedActual+ActualizedBudget&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;5. I now need to calculate the actualized Tax based on the actualized budget. The tax formula is that you do not pay any tax up and until your cumulative net losses have not been wiped out; so you need to calculate net profit before tax for both the current financial year and cumulative of all financial years where there is net loss before tax&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Net Profit/Loss for current financial year Measures:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10d1TaxPeriodActualBudgetActualized = 
VAR Result = 
CALCULATE(
    [Board10c1AllTransactionAmountwithSignActualBudgetActualized],FILTER(all(GLAccountClientUser[GLAccountValue]),GLAccountClientUser[GLAccountValue]&amp;lt;4700000))
RETURN
    Result&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Board10d2TaxPeriodRunningTotalActualBudgetActualized = if(
     HASONEFILTER(TabPLGLItem[GLItem])
     ,
     CALCULATE(
             [Board10d1TaxPeriodActualBudgetActualized]
             ,
             ALL(TabPLGLItem[GLItem])
             ,
             TabPLGLItem[Index] &amp;lt; VALUES(TabPLGLItem[Index])
             )
     ,
     blank()
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Net Profit/Loss for cumulative financial years Measures:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10d3TaxCumulativeActualBudgetActualized = 
VAR Result =
CALCULATE([Board10c1AllTransactionAmountwithSignActualBudgetActualized],FILTER(ALL(BudgetCalendar[Date]),BudgetCalendar[Date] &amp;gt;= date(2021,10,1) &amp;amp;&amp;amp; BudgetCalendar[Date] &amp;lt;= MAX(BudgetCalendar[Date])),filter(all(GLAccountClientUser[GLAccountValue]),GLAccountClientUser[GLAccountValue]&amp;lt;4700000))
RETURN
    Result&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Board10d4TaxCumulativeRunningTotalActualBudgetActualized = if(
     HASONEFILTER(TabPLGLItem[GLItem])
     ,
     CALCULATE(
             [Board10d3TaxCumulativeActualBudgetActualized]
             ,
             ALL(TabPLGLItem[GLItem])
             ,
             TabPLGLItem[Index] &amp;lt; VALUES(TabPLGLItem[Index])
             )
     ,
     blank()
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tax Calculation on current financial year Measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10d5TaxCalcPeriodActualBudgetActualized = 
VAR Result = 
calculate(if([Board10d2TaxPeriodRunningTotalActualBudgetActualized]&amp;lt;0,0,[Board10d2TaxPeriodRunningTotalActualBudgetActualized]*[CorporateTax]))
RETURN
Result&lt;/LI-CODE&gt;&lt;P&gt;Tax Calculation on cumulative financial years Measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10d6TaxCalcCumulativeActualBudgetActualized = 
VAR Result = 
calculate(if([Board10d4TaxCumulativeRunningTotalActualBudgetActualized]&amp;lt;0,0,[Board10d4TaxCumulativeRunningTotalActualBudgetActualized]*[CorporateTax]))
RETURN
    Result&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;6. Measure to get actualized Tax applicable amount in the P&amp;amp;L:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10d71TaxAmountWithSignActualBudgetActualized = 
VAR Result = [Board10c1AllTransactionAmountwithSignActualBudgetActualized]
VAR TaxApplicable =
    -1
        * MIN (
            [Board10d5TaxCalcPeriodActualBudgetActualized],
            [Board10d6TaxCalcCumulativeActualBudgetActualized]
        )
RETURN
    IF ( SELECTEDVALUE ( TabPLGLItem[GLItem] ) = "Tax", TaxApplicable, Result )&lt;/LI-CODE&gt;&lt;P&gt;Measure to summarize above measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board10d81PLTaxAmountWithSignActualBudgetActualized = 
VAR
Result = SUMX (
    SUMMARIZE (TabPLGLItem,[GLItem]),
    CALCULATE (
        [Board10d71TaxAmountWithSignActualBudgetActualized]
    )
)
RETURN
Result&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;7. Running Total to get Net Profit after Tax&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board11RunningTotalActualBudgetActualized = 
if(
     HASONEFILTER(TabPLGLItem[GLItem])
     ,
     CALCULATE(
             [Board10d81PLTaxAmountWithSignActualBudgetActualized]
             ,
             ALL(TabPLGLItem[GLItem])
             ,
             TabPLGLItem[Index] &amp;lt;= VALUES(TabPLGLItem[Index])
             )
     ,
     blank()
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;8. Lastly, Measure to combine the running totals for net profit with amounts for P&amp;amp;L items:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Board12ProjectedAmountActualBudgetActualized = 
SWITCH(
	[HeaderCalcType]
	,
	BLANK(),BLANK()
	,
	1,[Board10d81PLTaxAmountWithSignActualBudgetActualized]
	,
	2,[Board11RunningTotalActualBudgetActualized]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Snapshot of visual after point 4 above. It is after this that performance gets very heavy:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, I cannot share the file, hence such a long post. Hopefully, you or someone out there can make this a bit lighter for better performance&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 18:32:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3032222#M103688</guid>
      <dc:creator>Ackbar-Learner</dc:creator>
      <dc:date>2023-01-19T18:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Measure taking too long</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3032637#M103729</link>
      <description>&lt;P&gt;Please see my recent video on how to isolate and test each of your measures to see which is the worst performer.&amp;nbsp; My guess it that it is one or both of the SUMX ones where you have a measure evaluated on each row (1b and 6b).&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=ScJVQoOWSqc" target="_blank"&gt;https://www.youtube.com/watch?v=ScJVQoOWSqc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2023 00:11:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3032637#M103729</guid>
      <dc:creator>ppm1</dc:creator>
      <dc:date>2023-01-20T00:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Measure taking too long</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3035144#M103892</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435924" data-lia-user-login="Ackbar-Learner" class="lia-mention lia-mention-user"&gt;Ackbar-Learner&lt;/a&gt;&amp;nbsp;, too many ifs will cause performance issues, your best bet is to put those ifs in a var result = (your if formula) the&amp;nbsp; return result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will boost your performance a bit&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Try avoiding too many ifs across many measures .what i mean&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure1 = if(name = value, calc,0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then you do another measure&lt;/P&gt;&lt;P&gt;Measure2= if(measure1&amp;gt;0,calc2,calc)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then you do another measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure3 = if(measure2 =measure1,calc3,0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above is a complete random example to help you understand that this will cause performance issue because poeerbi have to recalculate all the ifs of all measures inside measures.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Putting those measure in var first&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure1 =&lt;/P&gt;&lt;P&gt;var cond= if(name = value,calc,0)&lt;/P&gt;&lt;P&gt;Return cond&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;... this might help boost your performance&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Jan 2023 04:58:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3035144#M103892</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-21T04:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: Measure taking too long</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3036044#M103971</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Following your reply, i have relooked at the DAX formulas completely and came up with a new set leading to the same results. I think I have been able to optimize where I could and it is still slow but much better than before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used Performance Analyzer and understood that I was calculating too much data on the visual and had to filter it way at the start to make it a bit more practical.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot though; this post opened my mind to a lot of new things in Power BI.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jan 2023 10:00:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3036044#M103971</guid>
      <dc:creator>Ackbar-Learner</dc:creator>
      <dc:date>2023-01-22T10:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: Measure taking too long</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3036045#M103972</link>
      <description>&lt;P&gt;@ppm this is a nice video. I watched the one after and tried to do the same to my model. I won't say it worked perfectly but it is much more improved now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for the measure, which is taking a lot of time; it is the sheer amount of data, which is causing this issue. Once i optimized a bit more on the filter, it got much better.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jan 2023 10:03:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-taking-too-long/m-p/3036045#M103972</guid>
      <dc:creator>Ackbar-Learner</dc:creator>
      <dc:date>2023-01-22T10:03:08Z</dc:date>
    </item>
  </channel>
</rss>

