<?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 difference between two columns in Matrix based on slicer selection of Year in Power Bi in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2329785#M58486</link>
    <description>&lt;P&gt;Thank You So Much Tamerj1 .&lt;BR /&gt;You deserve to be&amp;nbsp; a super user .&lt;BR /&gt;Kudos ! Kudos !&lt;/P&gt;</description>
    <pubDate>Thu, 10 Feb 2022 04:31:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-02-10T04:31:25Z</dc:date>
    <item>
      <title>How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2322845#M58364</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 10:00:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2322845#M58364</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-07T10:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2323041#M58365</link>
      <description>&lt;P&gt;Hi. I think this is a question for the DAX forum. Anyway. In this case, you have years. That might help you to create a math subsctracting current selection and last year. You can do a measure like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
_current = CALCULATE ( SUM(Table[Value]) )
_last_year = CALCULATE ( SUM(Table[Value]) , SAMEPERIODLASTYEAR(Calendar[Date]) )
RETURN
_current - _last_year&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In order to make that calculation you need a calendar or date table to help you get time intelligence calculations. That would be the best practice, but if you don't like the idea you can use SELECTEDVALUE to get the current year and just do -1 in the _last_year filter context instead of SAMEPERIODLASTYEAR. That way when you filter a year you can get current - last difference. If you don't filter it will try to render differences with last year for each year in the matrix. The measure won't make sense if you add it in a visual without a period of time.&lt;/P&gt;
&lt;P&gt;I hope that helps,&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 12:20:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2323041#M58365</guid>
      <dc:creator>ibarrau</dc:creator>
      <dc:date>2022-02-07T12:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328046#M58366</link>
      <description>&lt;P&gt;Thanks for your response Ibbarau ,&lt;BR /&gt;&amp;nbsp;My values are actually codes ( like m124 , b016, cd56 ) . I categorized them as Distinct count . so when I use&amp;nbsp; SUM&amp;nbsp; the DAX is not working.&lt;BR /&gt;If you need&amp;nbsp; any info. Please ask .&lt;BR /&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 11:10:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328046#M58366</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-09T11:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328088#M58368</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="11211" data-lia-user-login="ibarrau" class="lia-mention lia-mention-user"&gt;ibarrau&lt;/a&gt;&amp;nbsp;thread moved to DAX forum&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 11:27:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328088#M58368</guid>
      <dc:creator>nickyvv</dc:creator>
      <dc:date>2022-02-09T11:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328267#M58392</link>
      <description>&lt;P&gt;Ok. If the numbers in the fields are distinct count of categories you can replace the SUM of the measure I have sent with DISTINCTCOUNT function in DAX.&lt;/P&gt;
&lt;P&gt;I hope that work&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 12:57:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328267#M58392</guid>
      <dc:creator>ibarrau</dc:creator>
      <dc:date>2022-02-09T12:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328634#M58410</link>
      <description>&lt;P&gt;Thanks for your solution&amp;nbsp;&lt;BR /&gt;I also wrote one dax it worked out&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;X&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;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(table&lt;/SPAN&gt;&lt;SPAN&gt;[ Code]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(table&lt;/SPAN&gt;&lt;SPAN&gt;,table&lt;/SPAN&gt;&lt;SPAN&gt;[Year]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;(table&lt;/SPAN&gt;&lt;SPAN&gt;[Year]&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;y&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;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(table&lt;/SPAN&gt;&lt;SPAN&gt;[Code]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(table&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;, table&lt;/SPAN&gt;&lt;SPAN&gt;[Year]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;table[Year]&lt;/SPAN&gt;&lt;SPAN&gt;)))&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;y&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;X&lt;BR /&gt;but the same dax is not working for calculated column. Why . Can you explain&lt;BR /&gt;&amp;nbsp;can you write suitable Dax for calculated column .&lt;BR /&gt;&lt;BR /&gt;Thank you so much .&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Feb 2022 15:44:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328634#M58410</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-09T15:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328693#M58416</link>
      <description>&lt;P&gt;Sample solution as per your requirement.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached .pbix file.&lt;/P&gt;&lt;P&gt;&lt;A href="https://nicesoftwaresolutions1-my.sharepoint.com/:u:/g/personal/ameshram_nicesoftwaresolutions_com/EYiLgDmP6YxLnxukC0TutVsB1Hx9Q6e5-WRYOpJC4cOxvA?e=Tee2b" target="_blank"&gt;https://nicesoftwaresolutions1-my.sharepoint.com/:u:/g/personal/ameshram_nicesoftwaresolutions_com/EYiLgDmP6YxLnxukC0TutVsB1Hx9Q6e5-WRYOpJC4cOxvA?e=Tee2b&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:07:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328693#M58416</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-09T16:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328694#M58417</link>
      <description>&lt;P&gt;Sample solution as per your requirement.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached .pbix file.&lt;/P&gt;&lt;P&gt;&lt;A href="https://nicesoftwaresolutions1-my.sharepoint.com/:u:/g/personal/ameshram_nicesoftwaresolutions_com/EYiLgDmP6YxLnxukC0TutVsB1Hx9Q6e5-WRYOpJC4cOxvA?e=Tee2b" target="_blank"&gt;https://nicesoftwaresolutions1-my.sharepoint.com/:u:/g/personal/ameshram_nicesoftwaresolutions_com/EYiLgDmP6YxLnxukC0TutVsB1Hx9Q6e5-WRYOpJC4cOxvA?e=Tee2b&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:07:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328694#M58417</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-09T16:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328740#M58420</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Check out this sample file&amp;nbsp;&lt;A href="https://www.dropbox.com/t/34kVadAA9Yb40CUO" target="_blank"&gt;https://www.dropbox.com/t/34kVadAA9Yb40CUO&lt;/A&gt;&lt;BR /&gt;Actually, you cannot add a new measure to the matrix visual. If you do so you will see two values under each year. Therefore, the only choice is to create a new measure that is built on top of the original one, playing with the code in order to view the difference at the Total column like this&amp;nbsp;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;This is the code:&amp;nbsp; &amp;nbsp; &amp;nbsp;Note: [Measure] is your original measure&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Measure1 = 
VAR MaxYear = MAX ( 'Table'[Year] )
VAR MinYear = MIN ( 'Table'[Year] )
VAR MaxYearValue =
    CALCULATE ( 
        [Measure],
        'Table'[Year] = MaxYear
    )
VAR MinYearValue =
    CALCULATE ( 
        [Measure],
        'Table'[Year] = MinYear
    )
VAR Difference = MaxYearValue - MinYearValue
VAR Result =
    SWITCH (
        TRUE,
        NOT HASONEVALUE ( 'Table'[Year] ), Difference,
        COUNTROWS ( ALLSELECTED ('Table'[Year] ) ) = 1, BLANK(),
        [Measure]
    )
RETURN
    Result &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:21:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328740#M58420</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-02-09T16:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328916#M58431</link>
      <description>&lt;P&gt;Thanks For Your Solution .&lt;BR /&gt;One thing is the values column in your Pbix is numbers like 10 , 20&amp;nbsp; 26 ,but&amp;nbsp; my requirement is,&amp;nbsp; values&amp;nbsp; column is codes like b010 , c350, d6f , ng6 . I categorized them as Distinct count . So they look like numbers in my attached file . I think the DAX is almost correct .&amp;nbsp; Can you modify dax by using my scenario .&lt;BR /&gt;Thanks For such great Help .&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 18:00:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328916#M58431</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-09T18:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328947#M58432</link>
      <description>&lt;P&gt;You can just refer your measure name instead of [Measure] and it should work. Otherwise, you can send your file with a sample data and I'll do it for you.&amp;nbsp;&lt;BR /&gt;If you are satisfied please mark my reply as accepted solution. Kudoes are also appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 18:09:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2328947#M58432</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-02-09T18:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2329038#M58436</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&amp;nbsp;I replaced values with codes . My requirement is look like this . I categorized them as distinct count ( from column tools ) .What I want is exactly like your output&amp;nbsp; . Measure 1 is exactly corect . I think we need to modify the Measure , with codes (Distinct Count ) .Please modify the dax .,It would work fine. Am unable tho send the file .&lt;BR /&gt;Kudos !&lt;BR /&gt;Thanks for such quick response&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 19:00:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2329038#M58436</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-09T19:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2329470#M58466</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Here you go&amp;nbsp;&lt;A href="https://www.dropbox.com/t/sMyzwonHckNHvdKX" target="_blank"&gt;https://www.dropbox.com/t/sMyzwonHckNHvdKX&lt;/A&gt;&lt;BR /&gt;Original Measure code remains the same&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Measure = COUNTROWS ( DISTINCT ('Table'[Value] ) )&lt;/LI-CODE&gt;&lt;P&gt;New Measure code is&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Measure1 = 
VAR MaxYear = MAX ( 'Table'[Year] )
VAR MinYear = MIN ( 'Table'[Year] )
VAR MaxYearValue =
    CALCULATE ( 
        [Measure],
        'Table'[Year] = MaxYear
    )
VAR MinYearValue =
    CALCULATE ( 
        [Measure],
        'Table'[Year] = MinYear
    )
VAR Difference = MaxYearValue - MinYearValue
VAR Result =
    SWITCH (
        TRUE,
        NOT HASONEVALUE ( 'Table'[Year] ), Difference,
        COUNTROWS ( ALLSELECTED ('Table'[Year] ) ) = 1, BLANK(),
        [Measure]
    )
RETURN
    Result &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 01:13:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2329470#M58466</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-02-10T01:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2329785#M58486</link>
      <description>&lt;P&gt;Thank You So Much Tamerj1 .&lt;BR /&gt;You deserve to be&amp;nbsp; a super user .&lt;BR /&gt;Kudos ! Kudos !&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 04:31:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/2329785#M58486</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-10T04:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to get difference between two columns in Matrix based on slicer selection of Year in Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/4304148#M170908</link>
      <description>&lt;P&gt;is there a way to add an additional column with the difference in percentage?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 12:00:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-difference-between-two-columns-in-Matrix-based-on/m-p/4304148#M170908</guid>
      <dc:creator>AAspa</dc:creator>
      <dc:date>2024-11-27T12:00:18Z</dc:date>
    </item>
  </channel>
</rss>

