<?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 to concatenate multiple measure values with newlines into single measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-concatenate-multiple-measure-values-with-newlines-into/m-p/1222522#M19857</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you share a screenshot of your current scenario and what are the expected results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;HN&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jul 2020 19:23:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-07-14T19:23:14Z</dc:date>
    <item>
      <title>DAX to concatenate multiple measure values with newlines into single measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-concatenate-multiple-measure-values-with-newlines-into/m-p/1222492#M19856</link>
      <description>&lt;P&gt;So I can't seem to find an answer to this &lt;EM&gt;anywhere&lt;/EM&gt;... I have a series of measure that are reading the selected values of different slicers. I'd like to take these measures and combine them into a new single measure that separates their values with newlines. Here is a sketch of what I want to do:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;HAVE:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;measure_2 = "slicer value a; slicer value b; slicer value c"&lt;/P&gt;&lt;P&gt;measure_2 = "slicer value e; slicer value f; slicer value g"&lt;/P&gt;&lt;P&gt;measure_3 = "slicer value x; slicer value y; slicer value z"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WANT:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;measure_4 = "measure_1: slicer value a; slicer value b; slicer value c&lt;/P&gt;&lt;P&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;measure_2: slicer value e; slicer value f; slicer value g&lt;/P&gt;&lt;P&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;measure_3: slicer value x; slicer value y; slicer value z"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any possible way to do this? I think the CONCATENATEX function will probably be involved but I'm honestly pretty stuck. Thank you!&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 19:11:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-concatenate-multiple-measure-values-with-newlines-into/m-p/1222492#M19856</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-14T19:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to concatenate multiple measure values with newlines into single measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-concatenate-multiple-measure-values-with-newlines-into/m-p/1222522#M19857</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you share a screenshot of your current scenario and what are the expected results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;HN&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 19:23:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-concatenate-multiple-measure-values-with-newlines-into/m-p/1222522#M19857</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-14T19:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to concatenate multiple measure values with newlines into single measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-concatenate-multiple-measure-values-with-newlines-into/m-p/1223631#M19887</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , try like &lt;/P&gt;
&lt;P&gt;"Slicer a " &amp;amp; CONCATENATEX(values(Table[slicer value a]),Table[slicer value a]) &amp;amp; "Slicer b " &amp;amp; CONCATENATEX(values(Table[slicer value b]),Table[slicer value b]) &amp;amp; "Slicer b " &lt;BR /&gt;&amp;amp; CONCATENATEX(values(Table[slicer value c]),Table[slicer value c])&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 06:40:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-concatenate-multiple-measure-values-with-newlines-into/m-p/1223631#M19887</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-07-15T06:40:01Z</dc:date>
    </item>
  </channel>
</rss>

