<?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 YY% WORKING SLOW in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2125314#M48741</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I've already tried, but it doesn't matter, it's slow&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 09 Oct 2021 20:45:02 GMT</pubDate>
    <dc:creator>rlsantos</dc:creator>
    <dc:date>2021-10-09T20:45:02Z</dc:date>
    <item>
      <title>MEASURE YY% WORKING SLOW</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2124803#M48730</link>
      <description>&lt;P&gt;Hi everyone!&lt;/P&gt;&lt;P&gt;Who can help me with this?&lt;/P&gt;&lt;P&gt;I have a simple mesure tha calculate % in same period from last year.&lt;/P&gt;&lt;P&gt;REAL SALES YY%:=&lt;SPAN class="cf1"&gt;IFERROR&lt;/SPAN&gt;&lt;SPAN class="cf2"&gt;(&lt;/SPAN&gt;&lt;SPAN class="cf0"&gt;[REAL SELLIN]/&lt;/SPAN&gt;&lt;SPAN class="cf1"&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN class="cf0"&gt;([REAL SELLIN];&lt;/SPAN&gt;&lt;SPAN class="cf1"&gt;DATEADD&lt;/SPAN&gt;&lt;SPAN class="cf0"&gt;(d_DATES[DATES];-1;&lt;/SPAN&gt;&lt;SPAN class="cf1"&gt;YEAR&lt;/SPAN&gt;&lt;SPAN class="cf0"&gt;))-1;0&lt;/SPAN&gt;&lt;SPAN class="cf2"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;!--  EndFragment   --&gt;&lt;/P&gt;&lt;P&gt;This measure is Working very very Slow, can enyone tell me whats wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2021 20:24:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2124803#M48730</guid>
      <dc:creator>rlsantos</dc:creator>
      <dc:date>2021-10-08T20:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: MEASURE YY% WORKING SLOW</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2124808#M48731</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="328145" data-lia-user-login="rlsantos" class="lia-mention lia-mention-user"&gt;rlsantos&lt;/a&gt;&amp;nbsp; can you try SAMEPERIODLASTYEAR syntax?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2021 20:32:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2124808#M48731</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-10-08T20:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: MEASURE YY% WORKING SLOW</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2125314#M48741</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I've already tried, but it doesn't matter, it's slow&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Oct 2021 20:45:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2125314#M48741</guid>
      <dc:creator>rlsantos</dc:creator>
      <dc:date>2021-10-09T20:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: MEASURE YY% WORKING SLOW</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2125420#M48742</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="328145" data-lia-user-login="rlsantos" class="lia-mention lia-mention-user"&gt;rlsantos&lt;/a&gt;&amp;nbsp; can you try using the variables and see if it improves the performance&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure:=
VAR _0 = [REAL SELLIN]
VAR _1 = CALCULATE(_0, SAMEPERIODLASTYEAR(d_DATES[DATES]))
VAR _2 = DIVIDE(_0,_1)
RETURN IFERROR(_2,0)&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 10 Oct 2021 05:30:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2125420#M48742</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-10-10T05:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: MEASURE YY% WORKING SLOW</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2125763#M48764</link>
      <description>&lt;P&gt;Thanks Bro!!&lt;BR /&gt;It worked&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Oct 2021 20:37:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2125763#M48764</guid>
      <dc:creator>rlsantos</dc:creator>
      <dc:date>2021-10-10T20:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: MEASURE YY% WORKING SLOW</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2125805#M48766</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="328145" data-lia-user-login="rlsantos" class="lia-mention lia-mention-user"&gt;rlsantos&lt;/a&gt;&amp;nbsp; glad to be of help. Can you please accept the answer.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Oct 2021 22:28:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MEASURE-YY-WORKING-SLOW/m-p/2125805#M48766</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-10-10T22:28:40Z</dc:date>
    </item>
  </channel>
</rss>

