<?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: Countrows containing in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Countrows-containing/m-p/3088156#M108059</link>
    <description>&lt;P&gt;Thank you, I honestly dont know why I didnt think of doing it this way &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Much appreciated&lt;/P&gt;</description>
    <pubDate>Mon, 20 Feb 2023 14:22:21 GMT</pubDate>
    <dc:creator>ukare1996</dc:creator>
    <dc:date>2023-02-20T14:22:21Z</dc:date>
    <item>
      <title>Countrows containing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Countrows-containing/m-p/3087829#M108035</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I will try and explain this in the best way possible.&lt;/P&gt;&lt;P&gt;I have some columns that within each row they might have different options which are semicoloun separated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Take for example the below coloumn - Row one contains two select options Private drains cleaned and GM UPGDARED....&lt;/P&gt;&lt;P&gt;within the hightlight row, I only just want to count "GM UPGRADED following....&lt;/P&gt;&lt;P&gt;My question is, how can I count item semicolon separted within a row? If that makes any sense&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried the below but it' not returning me the correct result&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;STRONG&gt;Monitor 1 -&amp;nbsp; TEST&lt;/STRONG&gt; = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;('Network (Test)',&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Network (Test)'[Monitor 1 - Action] &lt;/SPAN&gt;&lt;SPAN&gt;IN&lt;/SPAN&gt;&lt;SPAN&gt;({&lt;/SPAN&gt;&lt;SPAN&gt;"GM installed following NPO visit/advice"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"GM (ADDITIONAL) installed following NPO visit/advice"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"GM UPGRADED following NPO visit/advice"&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;The above formula is only returning me 1 - not taking into account the row with multiple options separated with semicolons&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Any help will be much appreciated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 20 Feb 2023 12:04:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Countrows-containing/m-p/3087829#M108035</guid>
      <dc:creator>ukare1996</dc:creator>
      <dc:date>2023-02-20T12:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Countrows containing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Countrows-containing/m-p/3088036#M108046</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="380889" data-lia-user-login="ukare1996" class="lia-mention lia-mention-user"&gt;ukare1996&lt;/a&gt; , try like &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Monitor 1 - TEST =&lt;BR /&gt;COUNTROWS(&lt;BR /&gt;FILTER('Network (Test)',&lt;BR /&gt;Containsstring('Network (Test)'[Monitor 1 - Action] , "GM installed following NPO visit/advice")&lt;BR /&gt;|| Containsstring('Network (Test)'[Monitor 1 - Action] , "GM (ADDITIONAL) installed following NPO visit/advice")&lt;BR /&gt;|| Containsstring('Network (Test)'[Monitor 1 - Action] ,"GM UPGRADED following NPO visit/advice")&lt;BR /&gt;))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CONTAINSSTRING and CONTAINSSTRINGEXACT: &lt;A href="https://www.youtube.com/watch?v=XbgLGDvWdWQ&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=44" target="_blank"&gt;https://www.youtube.com/watch?v=XbgLGDvWdWQ&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=44&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2023 13:30:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Countrows-containing/m-p/3088036#M108046</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2023-02-20T13:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Countrows containing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Countrows-containing/m-p/3088156#M108059</link>
      <description>&lt;P&gt;Thank you, I honestly dont know why I didnt think of doing it this way &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Much appreciated&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2023 14:22:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Countrows-containing/m-p/3088156#M108059</guid>
      <dc:creator>ukare1996</dc:creator>
      <dc:date>2023-02-20T14:22:21Z</dc:date>
    </item>
  </channel>
</rss>

