<?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: Count by type and concatenate results in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-by-type-and-concatenate-results/m-p/1044411#M14056</link>
    <description>&lt;P&gt;Exactly what I needed!&lt;/P&gt;&lt;P&gt;I'll mark it as solution.&lt;/P&gt;&lt;P&gt;Thank you so much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Apr 2020 13:24:46 GMT</pubDate>
    <dc:creator>fpennisi17</dc:creator>
    <dc:date>2020-04-23T13:24:46Z</dc:date>
    <item>
      <title>Count by type and concatenate results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-by-type-and-concatenate-results/m-p/1044355#M14052</link>
      <description>&lt;P&gt;Suppose to have a table like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Store, Fruit&lt;/P&gt;&lt;P&gt;A, Apple&lt;/P&gt;&lt;P&gt;A, Banana&lt;/P&gt;&lt;P&gt;A, Banana&lt;/P&gt;&lt;P&gt;A, Grape&lt;/P&gt;&lt;P&gt;B, Banana&lt;/P&gt;&lt;P&gt;B, Grape&lt;/P&gt;&lt;P&gt;B, Grape&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can you get the following output?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Store, Fruits&lt;/P&gt;&lt;P&gt;A, 1 Apple / 2 Banana / 1 Grape&lt;/P&gt;&lt;P&gt;B, 1 Banana / 2 Grape&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2020 13:08:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-by-type-and-concatenate-results/m-p/1044355#M14052</guid>
      <dc:creator>fpennisi17</dc:creator>
      <dc:date>2020-04-23T13:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: Count by type and concatenate results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-by-type-and-concatenate-results/m-p/1044389#M14055</link>
      <description>&lt;P&gt;Well, put Store in a table visualization along with something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
    VAR __Table = 
        SUMMARIZE(
            'Table',
            [Fruit],
            "Count",COUNTROWS('Table')
        )
RETURN
    CONCATENATEX(__Table,[Count] &amp;amp; " " &amp;amp; [Fruit]," / ")&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2020 13:19:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-by-type-and-concatenate-results/m-p/1044389#M14055</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-04-23T13:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: Count by type and concatenate results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-by-type-and-concatenate-results/m-p/1044411#M14056</link>
      <description>&lt;P&gt;Exactly what I needed!&lt;/P&gt;&lt;P&gt;I'll mark it as solution.&lt;/P&gt;&lt;P&gt;Thank you so much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2020 13:24:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-by-type-and-concatenate-results/m-p/1044411#M14056</guid>
      <dc:creator>fpennisi17</dc:creator>
      <dc:date>2020-04-23T13:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Count by type and concatenate results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-by-type-and-concatenate-results/m-p/1044425#M14057</link>
      <description>Great! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Thu, 23 Apr 2020 13:28:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-by-type-and-concatenate-results/m-p/1044425#M14057</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-04-23T13:28:44Z</dc:date>
    </item>
  </channel>
</rss>

