<?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: How to get the difference between more rows? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2785470#M87285</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For [Date] you need to use your month column. The month column has to be of YYYYMM format.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Sep 2022 01:59:32 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2022-09-22T01:59:32Z</dc:date>
    <item>
      <title>How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2779418#M86933</link>
      <description>&lt;P&gt;Hey guys,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i need your help please i hava a huge table with lot of data (many excel files in one folder) and i want the differences between the Sources (excelfiles).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have found something which is almost good for that what i want in the Quick Measures:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Value difference from LIST_211022_MOT_PROG_P2022-01_final.xlsx = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR __BASELINE_VALUE =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;CALCULATE(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SUM('Zusammenfassung'[Value]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;'Zusammenfassung'[Source.Name]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&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;IN { "LIST_211022_MOT_PROG_P2022-01_final.xlsx" }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR __MEASURE_VALUE = SUM('Zusammenfassung'[Value])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;IF(NOT ISBLANK(__MEASURE_VALUE), __MEASURE_VALUE - __BASELINE_VALUE)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;But the problem here ist that the Source is not dinamic, i have to filter between the differen excel files and need that den differences.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Almost like the function in the pivot tabel (show values as difference).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Can you help me please?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Sep 2022 05:58:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2779418#M86933</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-20T05:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2779573#M86938</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Value difference =
VAR __MEASURE_VALUE =
    SUM ( 'Zusammenfassung'[Value] )
RETURN
    SUMX (
        VALUES ( 'Zusammenfassung'[Source.Name] ),
        VAR __BASELINE_VALUE =
            CALCULATE ( SUM ( 'Zusammenfassung'[Value] ) )
        RETURN
            IF ( NOT ISBLANK ( __MEASURE_VALUE ), __MEASURE_VALUE - __BASELINE_VALUE )
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 20 Sep 2022 06:57:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2779573#M86938</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-20T06:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2779618#M86939</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately this ist working.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 07:08:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2779618#M86939</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-20T07:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2779801#M86952</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How does your visual look like? What results did you get?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 07:53:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2779801#M86952</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-20T07:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2781654#M87038</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i get no result, there is no mistake in the formular.&lt;/P&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and i have a slicer with the different Sources, i only want to compare two different sources at the same time.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 05:23:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2781654#M87038</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-21T05:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2781687#M87040</link>
      <description>&lt;P&gt;Here the overview with your formular in comparison:&lt;/P&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 05:22:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2781687#M87040</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-21T05:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2781690#M87041</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So you want to select two sources from the slicer and the display the values of the two sources in addition to the difference between them? Is that correct? If so, I would suggest to use a table visual as it has a total where we csn disply the difference value.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 18:41:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2781690#M87041</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-20T18:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2781721#M87044</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;If you want to follow my suggestion and disply the results in a tablevisual, then place the Sorce Name column in the table along with the following measure. From the visual format options, activate the total and rename it "Difference"&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Value =
VAR MeasureValue =
    SUM ( 'Zusammenfassung'[Value] )
VAR T1 =
    ADDCOLUMNS (
        VALUES ( 'Zusammenfassung'[Source.Name] ),
        "@Value", CALCULATE ( SUM ( 'Zusammenfassung'[Value] ) )
    )
VAR DifferenceValue =
    MAXX ( T1, [@Value] ) - MINX ( T1, [@Value] )
RETURN
    IF (
        HASONEVALUE ( 'Zusammenfassung'[Source.Name] ),
        MeasureValue,
        DifferenceValue
    )&lt;/LI-CODE&gt;
&lt;P&gt;If you wish to display the difference in a seperate chart, then place the following measure in the chart ALONE (don't place any column along with it in the same chart)&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Value difference =
VAR T1 =
    ADDCOLUMNS (
        VALUES ( 'Zusammenfassung'[Source.Name] ),
        "@Value", CALCULATE ( SUM ( 'Zusammenfassung'[Value] ) )
    )
RETURN
    MAXX ( T1, [@Value] ) - MINX ( T1, [@Value] )&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 20 Sep 2022 19:03:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2781721#M87044</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-20T19:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2782653#M87102</link>
      <description>&lt;P&gt;Thank you very much, but i have one last question &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;The difference is always postiv but i have positiv an negativ chnages in the numbers how can i display them in a chart?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 05:16:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2782653#M87102</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-21T05:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2782662#M87104</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Yes I made it this way as there is no logic (at least from my prespective) that defines which one minus which one. Please clarify this point.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 05:23:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2782662#M87104</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-21T05:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2782762#M87115</link>
      <description>&lt;P&gt;i want to compare the volumes from 2021 to 2022 for each month and of course some month are better than last year and others not. Therefore i would need plus and minus changes&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 06:00:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2782762#M87115</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-21T06:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2782802#M87118</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a date or year-month column that defines the date of each list?&lt;/P&gt;
&lt;P&gt;Do you to subtract the latest minus the earliest or the opposite?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 06:17:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2782802#M87118</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-21T06:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2782827#M87119</link>
      <description>&lt;P&gt;Yes i have the month and yes i will substract the latest minus the erliest i have filtered.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 06:24:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2782827#M87119</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-21T06:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784802#M87240</link>
      <description>&lt;P&gt;&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;could you please help me? i am lost&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 18:13:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784802#M87240</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-21T18:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784830#M87245</link>
      <description>&lt;P&gt;Here the example ( the older version is on top, the newest version on the bottom):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Normaly the difference between these two should be negative and not positiv.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know what i mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 18:22:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784830#M87245</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-21T18:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784886#M87248</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apologies for the late response. I was extremely busy tody I didn't have the chance to look into it. &lt;BR /&gt;Actually, this shouldn't be a problem we just need to filter the table or sort it by date then retrieve the amount for both max and min dates.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Value =
VAR MeasureValue =
    SUM ( 'Zusammenfassung'[Value] )
VAR T1 =
    ADDCOLUMNS (
        VALUES ( 'Zusammenfassung'[Source.Name] ),
        "@Date", CALCULATE ( MAX ( 'Zusammenfassung'[Date] ) ),
        "@Value", CALCULATE ( SUM ( 'Zusammenfassung'[Value] ) )
    )
VAR FirstRecod =
    TOPN ( 1, T1, [@Date], ASC )
VAR LastRecod =
    TOPN ( 1, T1, [@Date] )
VAR DifferenceValue =
    MAXX ( LastRecod, [@Value] ) - MAXX ( FirstRecod, [@Value] )
RETURN
    IF (
        HASONEVALUE ( 'Zusammenfassung'[Source.Name] ),
        MeasureValue,
        DifferenceValue
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;*UPDATE&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;The measure has been updated fixing one error&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 04:55:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784886#M87248</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-22T04:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784950#M87252</link>
      <description>&lt;P&gt;Hi&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;dont worry &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have tested your formular, but the result its unfortunately not correct &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here two examples:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&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;BR Kim&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 19:16:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784950#M87252</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-21T19:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784988#M87254</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please copy/paste the formula that you've used. Did you check the updated formula?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 19:33:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784988#M87254</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-21T19:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784997#M87255</link>
      <description>&lt;P&gt;Yes, now it shows this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 19:37:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2784997#M87255</guid>
      <dc:creator>KimBoehmer</dc:creator>
      <dc:date>2022-09-21T19:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the difference between more rows?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2785470#M87285</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="444344" data-lia-user-login="KimBoehmer" class="lia-mention lia-mention-user"&gt;KimBoehmer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For [Date] you need to use your month column. The month column has to be of YYYYMM format.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 01:59:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-the-difference-between-more-rows/m-p/2785470#M87285</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-22T01:59:32Z</dc:date>
    </item>
  </channel>
</rss>

