<?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 Translate values from rows into a single record value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Translate-values-from-rows-into-a-single-record-value/m-p/2265523#M54875</link>
    <description>&lt;P&gt;I have the left table below. And I'm looking for how I can make the right table via a calculated table. In which I am mainly looking for how the values of several rows are 'knotted' together and shown as a summary value. (I am referring to column 'Activity')&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Jan 2022 13:15:51 GMT</pubDate>
    <dc:creator>brief001</dc:creator>
    <dc:date>2022-01-04T13:15:51Z</dc:date>
    <item>
      <title>Translate values from rows into a single record value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Translate-values-from-rows-into-a-single-record-value/m-p/2265523#M54875</link>
      <description>&lt;P&gt;I have the left table below. And I'm looking for how I can make the right table via a calculated table. In which I am mainly looking for how the values of several rows are 'knotted' together and shown as a summary value. (I am referring to column 'Activity')&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 13:15:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Translate-values-from-rows-into-a-single-record-value/m-p/2265523#M54875</guid>
      <dc:creator>brief001</dc:creator>
      <dc:date>2022-01-04T13:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Translate values from rows into a single record value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Translate-values-from-rows-into-a-single-record-value/m-p/2265527#M54876</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="284859" data-lia-user-login="brief001" class="lia-mention lia-mention-user"&gt;brief001&lt;/a&gt; , Create a measure using concatenatex&lt;/P&gt;
&lt;P&gt;concatenatex(table, table[Activity])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and use it with order_id&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 13:20:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Translate-values-from-rows-into-a-single-record-value/m-p/2265527#M54876</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-01-04T13:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: Translate values from rows into a single record value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Translate-values-from-rows-into-a-single-record-value/m-p/2265543#M54877</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="284859" data-lia-user-login="brief001" class="lia-mention lia-mention-user"&gt;brief001&lt;/a&gt;&amp;nbsp; you can us ethe following two measures&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Activity_Summary= CONCATENATEX(VALUES('Table'[Activity]),'Table'[Activity],"",'Table'[Activity],ASC)

Duration_Total= CALCULATE(SUM('Table'[Duration]),ALLEXCEPT('Table','Table'[Order_ID]))&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Jan 2022 13:31:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Translate-values-from-rows-into-a-single-record-value/m-p/2265543#M54877</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2022-01-04T13:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Translate values from rows into a single record value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Translate-values-from-rows-into-a-single-record-value/m-p/2265553#M54879</link>
      <description>&lt;P&gt;Thank you!!&amp;nbsp;Solved with:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;Tabel_New = SUMMARIZE(Tabel,&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; Tabel[Order_ID] , &lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; "Activity_Summary" , concatenatex(Tabel, Tabel[Activity]) , &lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; "Duration_Total" , SUM(Tabel[Duration] ))&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 13:37:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Translate-values-from-rows-into-a-single-record-value/m-p/2265553#M54879</guid>
      <dc:creator>brief001</dc:creator>
      <dc:date>2022-01-04T13:37:38Z</dc:date>
    </item>
  </channel>
</rss>

