<?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: DAX Unpivot in Quick Measures Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/833154#M397</link>
    <description>&lt;P&gt;interesting solution for unpivoting in DAX.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 30 Oct 2019 23:52:16 GMT</pubDate>
    <dc:creator>anandav</dc:creator>
    <dc:date>2019-10-30T23:52:16Z</dc:date>
    <item>
      <title>DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/574832#M256</link>
      <description>&lt;P&gt;At a recent user group meeting in Columbus Ohio, one of my members presented me with a problem they were having. The member was working with a SharePoint list and attempting to unpivot a number of columns on thousands of list items. For some reason, the unpivoting, specifically, was causing massive performance issues. Therefore, I suggested unpivoting the data in DAX instead and created this example for the member to demonstrate the technique. Fortunately, this worked very well and was very performant even at scale. So, if you are having trouble with unpivoting data in Power Query, this technique may work for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The original example data looks like this:&lt;/P&gt;
&lt;TABLE width="658"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;Name&lt;/TD&gt;
&lt;TD width="210"&gt;Date&lt;/TD&gt;
&lt;TD width="64"&gt;Column1&lt;/TD&gt;
&lt;TD width="64"&gt;Column2&lt;/TD&gt;
&lt;TD width="64"&gt;Column3&lt;/TD&gt;
&lt;TD width="64"&gt;Column4&lt;/TD&gt;
&lt;TD width="64"&gt;Column5&lt;/TD&gt;
&lt;TD width="64"&gt;Column6&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 1&lt;/TD&gt;
&lt;TD&gt;Monday, January 1, 2018&lt;/TD&gt;
&lt;TD&gt;Greg&lt;/TD&gt;
&lt;TD&gt;Jason&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 2&lt;/TD&gt;
&lt;TD&gt;Friday, January 5, 2018&lt;/TD&gt;
&lt;TD&gt;Jason&lt;/TD&gt;
&lt;TD&gt;Frank&lt;/TD&gt;
&lt;TD&gt;George&lt;/TD&gt;
&lt;TD&gt;Battina&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 3&lt;/TD&gt;
&lt;TD&gt;Wednesday, January 10, 2018&lt;/TD&gt;
&lt;TD&gt;John&lt;/TD&gt;
&lt;TD&gt;Greg&lt;/TD&gt;
&lt;TD&gt;Jason&lt;/TD&gt;
&lt;TD&gt;Battina&lt;/TD&gt;
&lt;TD&gt;George&lt;/TD&gt;
&lt;TD&gt;Frank&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The DAX Unpivot formula is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Table = 
FILTER(
    UNION(
        SELECTCOLUMNS('Table1',"Name",[Name],"Date",[Date],"Column1",[Column1]),
        SELECTCOLUMNS('Table1',"Name",[Name],"Date",[Date],"Column1",[Column2]),
        SELECTCOLUMNS('Table1',"Name",[Name],"Date",[Date],"Column1",[Column3]),
        SELECTCOLUMNS('Table1',"Name",[Name],"Date",[Date],"Column1",[Column4]),
        SELECTCOLUMNS('Table1',"Name",[Name],"Date",[Date],"Column1",[Column5]),
        SELECTCOLUMNS('Table1',"Name",[Name],"Date",[Date],"Column1",[Column6])
    ),
    [Column1]&amp;lt;&amp;gt;"")&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will make the above data look like this:&lt;/P&gt;
&lt;TABLE width="289"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;Name&lt;/TD&gt;
&lt;TD width="161"&gt;Date&lt;/TD&gt;
&lt;TD width="64"&gt;Column1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 1&lt;/TD&gt;
&lt;TD&gt;1/1/2018 0:00&lt;/TD&gt;
&lt;TD&gt;Greg&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 2&lt;/TD&gt;
&lt;TD&gt;1/5/2018 0:00&lt;/TD&gt;
&lt;TD&gt;Jason&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 3&lt;/TD&gt;
&lt;TD&gt;1/10/2018 0:00&lt;/TD&gt;
&lt;TD&gt;John&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 1&lt;/TD&gt;
&lt;TD&gt;1/1/2018 0:00&lt;/TD&gt;
&lt;TD&gt;Jason&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 2&lt;/TD&gt;
&lt;TD&gt;1/5/2018 0:00&lt;/TD&gt;
&lt;TD&gt;Frank&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 3&lt;/TD&gt;
&lt;TD&gt;1/10/2018 0:00&lt;/TD&gt;
&lt;TD&gt;Greg&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 2&lt;/TD&gt;
&lt;TD&gt;1/5/2018 0:00&lt;/TD&gt;
&lt;TD&gt;George&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 3&lt;/TD&gt;
&lt;TD&gt;1/10/2018 0:00&lt;/TD&gt;
&lt;TD&gt;Jason&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 2&lt;/TD&gt;
&lt;TD&gt;1/5/2018 0:00&lt;/TD&gt;
&lt;TD&gt;Battina&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 3&lt;/TD&gt;
&lt;TD&gt;1/10/2018 0:00&lt;/TD&gt;
&lt;TD&gt;Battina&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 3&lt;/TD&gt;
&lt;TD&gt;1/10/2018 0:00&lt;/TD&gt;
&lt;TD&gt;George&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Meeting 3&lt;/TD&gt;
&lt;TD&gt;1/10/2018 0:00&lt;/TD&gt;
&lt;TD&gt;Frank&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&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;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiNWI0ZmUwOWEtMmIzMS00MjRlLTlmZTEtOTA5ZThmNjEwMmNjIiwidCI6IjRhMDQyNzQzLTM3M2EtNDNkMi04MjdiLTAwM2Y0YzdiYTFlNSIsImMiOjN9&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 18:27:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/574832#M256</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2018-11-28T18:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/707621#M350</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just stumbled upon your tip. I already knew it, but I was wondering, as the first section of selectcolumns is the same across all, can you bring in a string value created by DAX and apply it to the last bit? A little bit like using Indirect in Excel.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2019 11:46:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/707621#M350</guid>
      <dc:creator>DouweMeer</dc:creator>
      <dc:date>2019-06-21T11:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/833154#M397</link>
      <description>&lt;P&gt;interesting solution for unpivoting in DAX.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 23:52:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/833154#M397</guid>
      <dc:creator>anandav</dc:creator>
      <dc:date>2019-10-30T23:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/960104#M419</link>
      <description>&lt;P&gt;That is a one brilliant solution, Thank You!&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 08:41:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/960104#M419</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-05T08:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/960447#M420</link>
      <description>Thanks Anonymous&lt;/a&gt; !</description>
      <pubDate>Thu, 05 Mar 2020 12:21:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/960447#M420</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-03-05T12:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1404308#M633</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is awsome technique, I am trying to implement it but getting following error, could you please guide me on this. All columns which I am trying to unpivot are of date type you can see it on the right side in fields.&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;Thanks in advance.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Pooja Darbhe&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 09:50:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1404308#M633</guid>
      <dc:creator>PoojaDarbhe</dc:creator>
      <dc:date>2020-09-30T09:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1405308#M634</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="220887" data-lia-user-login="PoojaDarbhe" class="lia-mention lia-mention-user"&gt;PoojaDarbhe&lt;/a&gt;&amp;nbsp;- I can't see all of the formula so not sure exactly where you are getting the error in your DAX. If we are talking about the last line in your screen shot, you could try to replace "" with BLANK().&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 16:10:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1405308#M634</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-09-30T16:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1406863#M636</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help, there was the problem with last line only.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Pooja Darbhe&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 09:00:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1406863#M636</guid>
      <dc:creator>PoojaDarbhe</dc:creator>
      <dc:date>2020-10-01T09:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1537281#M646</link>
      <description>&lt;P&gt;This is great, but one thing is missing for me.&lt;BR /&gt;In the table on the right, the column headres are stored in the "Purchase type" column (what would be the Attribute column in Power Query), while this DAX code doesn't create that attribute column. Any ideas on how to achieve that?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2020 21:10:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1537281#M646</guid>
      <dc:creator>Nart</dc:creator>
      <dc:date>2020-12-07T21:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1806822#M695</link>
      <description>&lt;P&gt;I am not sure what I amissing but I am with Nart, the column headers NEED to be dynamic. The Union trick is helpful but you are hardcoding "Column1", etc. How do we generate the "Purchase Type" column from large number of columns like attribute column in Power Query, except of course with distinct values...?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Apr 2021 18:17:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1806822#M695</guid>
      <dc:creator>BG123</dc:creator>
      <dc:date>2021-04-26T18:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1894796#M706</link>
      <description>&lt;P&gt;Hi Greg_Deckler,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have same error message as&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/220887" target="_blank"&gt;@PoojaDarbhe&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;, i tred to change "" to (), then i got another error as below, please help, thanks.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;changed "" to () as suggested but got another error as below&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;</description>
      <pubDate>Fri, 11 Jun 2021 04:11:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1894796#M706</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-11T04:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1895759#M707</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Write Blank(), that will solve your problem.&lt;/P&gt;
&lt;P&gt;Let me know in case of any issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Pooja Darbhe&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 11:12:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1895759#M707</guid>
      <dc:creator>PoojaDarbhe</dc:creator>
      <dc:date>2021-06-11T11:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1897910#M708</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="220887" data-lia-user-login="PoojaDarbhe" class="lia-mention lia-mention-user"&gt;PoojaDarbhe&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Did that but got the below error message, please help, thanks.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 04:27:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1897910#M708</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-14T04:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1898142#M709</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead of [Output All] write [Outputfg], it should be column name not the value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this and let me know if that works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Pooja Darbhe&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 07:06:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/1898142#M709</guid>
      <dc:creator>PoojaDarbhe</dc:creator>
      <dc:date>2021-06-14T07:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Unpivot</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/2056614#M756</link>
      <description>&lt;P&gt;I think you need to add an 'addcolumn' in there to bring in the Column Heading information.&amp;nbsp; The way you have it now, assumes that the value data is all the same thing.&amp;nbsp; ie people.&amp;nbsp; But usually the different columns contain different 'types' of information like, color, size, cost, etc.&amp;nbsp; So that info needs to be included in the unpivot...&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 14:46:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-Unpivot/m-p/2056614#M756</guid>
      <dc:creator>pabeader</dc:creator>
      <dc:date>2021-09-03T14:46:28Z</dc:date>
    </item>
  </channel>
</rss>

