<?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: Possible loop in DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297235#M122876</link>
    <description>&lt;P&gt;Link&lt;/P&gt;</description>
    <pubDate>Mon, 26 Jun 2023 07:13:45 GMT</pubDate>
    <dc:creator>turcelaygoy</dc:creator>
    <dc:date>2023-06-26T07:13:45Z</dc:date>
    <item>
      <title>Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295012#M122727</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was trying to calculate the variation of some faults in the different units of products and I have been able to see the variation between to independent units of products. I was wondering if there is any way of programing loops so I can run the database and see the acumulated variation that is happening through those units of products.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;Right now I'm able to calculate the variation between units 5 and 10 doing: (Number of faults in unit 10-Number of faults in unit 5)/Number of faults in unit 5*100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I would like to calculate the variation taking into account all the units of products that are between 5 and 10; 5,6,7,8,9 and 10.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope someone can help me with this problem &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 08:47:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295012#M122727</guid>
      <dc:creator>turcelaygoy</dc:creator>
      <dc:date>2023-06-21T08:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295241#M122750</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="578408" data-lia-user-login="turcelaygoy" class="lia-mention lia-mention-user"&gt;turcelaygoy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please clarify further with some examples.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 10:22:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295241#M122750</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-21T10:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295270#M122754</link>
      <description>&lt;P&gt;Ok. This is the measure I'm using right now to calculate the variation:&lt;/P&gt;&lt;P&gt;First of all I take the values of the UT from a table that lists all the possible units. Then I do the same with the project and I calculate the variation as follows:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Filtered variation = &lt;/SPAN&gt;&lt;SPAN&gt;Var&lt;/SPAN&gt; &lt;SPAN&gt;UT&lt;/SPAN&gt;&lt;SPAN&gt;= &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'inicial unit'&lt;/SPAN&gt;&lt;SPAN&gt;[UT]&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;Var&lt;/SPAN&gt; &lt;SPAN&gt;UT2&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'final unit'&lt;/SPAN&gt;&lt;SPAN&gt;[UT]&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;Var&lt;/SPAN&gt; &lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Project'&lt;/SPAN&gt;&lt;SPAN&gt;[PROJECT]&lt;/SPAN&gt;&lt;SPAN&gt; ) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt; &lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;((&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[TOTAL FAULTS (QA)]&lt;/SPAN&gt;&lt;SPAN&gt;),Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[UT]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;UT2&lt;/SPAN&gt;&lt;SPAN&gt;,Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[PROJECT]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;)-(&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;,Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[TOTAL FAULTS (QA)]&lt;/SPAN&gt;&lt;SPAN&gt;),Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[UT]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;UT&lt;/SPAN&gt;&lt;SPAN&gt;,Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[PROJECT]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;))),(&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;,Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[TOTAL FAULTS (QA)]&lt;/SPAN&gt;&lt;SPAN&gt;),Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[UT]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;UT&lt;/SPAN&gt;&lt;SPAN&gt;,Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[PROJECT]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;)))*&lt;/SPAN&gt;&lt;SPAN&gt;100&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;But what I would like to calculate is the variation between all the units that are included between the given variables.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Example: If I choose units 3 an 6 I would like to calculate:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(Variation 3-4+Variation 4-5+Variation 5-6)/3&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;So I would need a loop to change the variable UT that I'm using in the current measure.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I don't know if this example works or you still need more information. Feel free to ask for more info or examples.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Jun 2023 10:36:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295270#M122754</guid>
      <dc:creator>turcelaygoy</dc:creator>
      <dc:date>2023-06-21T10:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295358#M122759</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="578408" data-lia-user-login="turcelaygoy" class="lia-mention lia-mention-user"&gt;turcelaygoy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Assumptions:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Both&amp;nbsp;&lt;SPAN&gt;'inicial unit' and&amp;nbsp;'final unit' tables are disconnected&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;'Project' table is connected to 'Sheet1' table (1-* single direction)&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;Please try&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Filtered variation =
AVERAGEX (
    CROSSJOIN (
        CROSSJOIN ( VALUES ( 'inicial unit'[UT] ), VALUES ( 'final unit'[UT] ) ),
        VALUES ( 'Project'[PROJECT] )
    ),
    VAR T =
        CALCULATETABLE ( Sheet1 )
    RETURN
        AVERAGEX (
            GENERATESERIES ( 'inicial unit'[UT], 'final unit'[UT] ),
            VAR CurrentFaults =
                SUMX ( FILTER ( T, Sheet1[UT] = [Value] ), Sheet1[TOTAL FAULTS (QA)] )
            VAR NextFaults =
                SUMX ( FILTER ( T, Sheet1[UT] = [Value] + 1 ), Sheet1[TOTAL FAULTS (QA)] )
            RETURN
                IF (
                    NextFaults &amp;lt;&amp;gt; BLANK (),
                    DIVIDE ( NextFaults - CurrentFaults, CurrentFaults ) * 100
                )
        )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 11:07:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295358#M122759</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-21T11:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295443#M122768</link>
      <description>&lt;P&gt;It works but the variation that it ruturns is not the one according to the numbers selected. It returns the variation between the initial unit and the (final unit-1).&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 11:47:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295443#M122768</guid>
      <dc:creator>turcelaygoy</dc:creator>
      <dc:date>2023-06-21T11:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295466#M122771</link>
      <description>&lt;P&gt;Have you tried to create a table variable in a measure? For example,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VAR UnitTable = ADDCOLUMNS(VALUES(Table[Unit]), "YourMeasure", [YourMeasure])&lt;/P&gt;&lt;P&gt;RETURN Min, Max, Median, Avg calculation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to specify only a fixed subset of units, you can wrap the ADDCOLUMNS expression with CALCULATETABLE(ADDCOLUMNS(...), Table[Unit] IN {5,6,7,8,9,10} )&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>Wed, 21 Jun 2023 11:53:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295466#M122771</guid>
      <dc:creator>ppm1</dc:creator>
      <dc:date>2023-06-21T11:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295474#M122772</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="578408" data-lia-user-login="turcelaygoy" class="lia-mention lia-mention-user"&gt;turcelaygoy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I believe I need to see some screenshots.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 11:55:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3295474#M122772</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-21T11:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297067#M122855</link>
      <description>&lt;P&gt;nlka&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 07:14:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297067#M122855</guid>
      <dc:creator>turcelaygoy</dc:creator>
      <dc:date>2023-06-26T07:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297101#M122858</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="578408" data-lia-user-login="turcelaygoy" class="lia-mention lia-mention-user"&gt;turcelaygoy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thsnk you! Now the picture is more clear. However, you still did not expalin what is the problem. What do you mean by "&lt;SPAN&gt;&lt;EM&gt;It returns the variation between the initial unit and the (final unit-1).&lt;/EM&gt;"? Please elaborate on this with one example and advise what should be the correct result.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 07:01:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297101#M122858</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-22T07:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297118#M122859</link>
      <description>&lt;P&gt;I have chosen project Oslo and initial UT 30 and final UT 32 and it returns me the variation between UT 30 and 33 that is 655% but it should say -67% (these results have been calculated filtering the variables in the excel sheet of the database). But then I have tried different projects and the variation that it returns is not correct. So right now the measure gives a result but not correct.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 07:08:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297118#M122859</guid>
      <dc:creator>turcelaygoy</dc:creator>
      <dc:date>2023-06-22T07:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297151#M122865</link>
      <description>&lt;P&gt;&lt;SPAN&gt;VariationBetweenUnits = VAR StartUnit = 5&lt;BR /&gt;VAR EndUnit = 10&lt;BR /&gt;VAR NumUnits = EndUnit - StartUnit + 1&lt;BR /&gt;VAR StartFaults = CALCULATE(SUM('Table'[Number of Faults]), 'Table'[Unit] = StartUnit)&lt;BR /&gt;VAR EndFaults = CALCULATE(SUM('Table'[Number of Faults]), 'Table'[Unit] = EndUnit)&lt;BR /&gt;VAR VariationSum = SUMX( GENERATESERIES(StartUnit, EndUnit-1, 1),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ABS(CALCULATE(SUM('Table'[Number of Faults]),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Table'[Unit] = EARLIER(StartUnit)) - CALCULATE(SUM('Table'[Number of Faults]),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'Table'[Unit] = EARLIER(StartUnit) + 1)) )&lt;BR /&gt;RETURN&lt;BR /&gt;DIVIDE(VariationSum, StartFaults) * 100&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 07:25:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297151#M122865</guid>
      <dc:creator>devanshi</dc:creator>
      <dc:date>2023-06-22T07:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297185#M122868</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="578408" data-lia-user-login="turcelaygoy" class="lia-mention lia-mention-user"&gt;turcelaygoy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you share a sample file?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 07:40:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297185#M122868</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-22T07:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297186#M122869</link>
      <description>&lt;P&gt;of the excel sheet or the power BI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 07:42:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297186#M122869</guid>
      <dc:creator>turcelaygoy</dc:creator>
      <dc:date>2023-06-22T07:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297194#M122870</link>
      <description>&lt;P&gt;Power Bi&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 07:44:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297194#M122870</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-22T07:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297205#M122871</link>
      <description>&lt;P&gt;It doesn't let me share the file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 07:48:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297205#M122871</guid>
      <dc:creator>turcelaygoy</dc:creator>
      <dc:date>2023-06-22T07:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297223#M122874</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="578408" data-lia-user-login="turcelaygoy" class="lia-mention lia-mention-user"&gt;turcelaygoy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You can only share a download link.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 07:54:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297223#M122874</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-22T07:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297235#M122876</link>
      <description>&lt;P&gt;Link&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 07:13:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3297235#M122876</guid>
      <dc:creator>turcelaygoy</dc:creator>
      <dc:date>2023-06-26T07:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3299204#M122977</link>
      <description>&lt;P&gt;Does this link work?&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 06:36:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3299204#M122977</guid>
      <dc:creator>turcelaygoy</dc:creator>
      <dc:date>2023-06-23T06:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3299223#M122981</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="578408" data-lia-user-login="turcelaygoy" class="lia-mention lia-mention-user"&gt;turcelaygoy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So sorry. I was so busy with other stuff and didn't have the chance to look into it. Today I'm out of office. I will check on Monday morning.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 06:47:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3299223#M122981</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-06-23T06:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Possible loop in DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3299336#M122987</link>
      <description>&lt;P&gt;No problem!!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 08:06:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-loop-in-DAX/m-p/3299336#M122987</guid>
      <dc:creator>turcelaygoy</dc:creator>
      <dc:date>2023-06-23T08:06:19Z</dc:date>
    </item>
  </channel>
</rss>

