<?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: Get the number of repeated text values that are higher than 3 by ID in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959240#M11147</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="165118" data-lia-user-login="NumeroENAP" class="lia-mention lia-mention-user"&gt;NumeroENAP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ok, create a measure and filter by its value&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = calculate(countrows('Table'),allexcept('Table','Table'[ID],'Table'[VALUE]))&lt;/LI-CODE&gt;</description>
    <pubDate>Wed, 04 Mar 2020 19:16:39 GMT</pubDate>
    <dc:creator>az38</dc:creator>
    <dc:date>2020-03-04T19:16:39Z</dc:date>
    <item>
      <title>Get the number of repeated text values that are higher than 3 by ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959097#M11133</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table exemple :&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;GROUP_NO&lt;/TD&gt;&lt;TD&gt;ID&lt;/TD&gt;&lt;TD&gt;VALUE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Banana&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;101&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Banana&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;102&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Banana&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;103&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Apple&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;104&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Apple&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I want to get :&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;/ Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Banana&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/ Value&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, in the end, if my table containt 3 values "banana" with ID #1, I want it to appear in my report. But, with the same ID, if the value «apple» appear only twice, I don't want it to appear in my report.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 17:03:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959097#M11133</guid>
      <dc:creator>NumeroENAP</dc:creator>
      <dc:date>2020-03-04T17:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Get the number of repeated text values that are higher than 3 by ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959174#M11139</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="165118" data-lia-user-login="NumeroENAP" class="lia-mention lia-mention-user"&gt;NumeroENAP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try create a calculated table&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table 2 = FILTER(SUMMARIZE('Table','Table'[ID],'Table'[VALUE],"Count",COUNT('Table'[VALUE])),[Count]&amp;gt;2)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 04 Mar 2020 18:20:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959174#M11139</guid>
      <dc:creator>az38</dc:creator>
      <dc:date>2020-03-04T18:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Get the number of repeated text values that are higher than 3 by ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959207#M11143</link>
      <description>&lt;P&gt;Hmmm, it doesn't work. It tells me that my query is refering to multiple columns (ID and Value) and that those can't be converted to scalar values.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 18:56:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959207#M11143</guid>
      <dc:creator>NumeroENAP</dc:creator>
      <dc:date>2020-03-04T18:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: Get the number of repeated text values that are higher than 3 by ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959215#M11144</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="165118" data-lia-user-login="NumeroENAP" class="lia-mention lia-mention-user"&gt;NumeroENAP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;are you creating new &lt;STRONG&gt;table&lt;/STRONG&gt;? not column or measure?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 19:01:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959215#M11144</guid>
      <dc:creator>az38</dc:creator>
      <dc:date>2020-03-04T19:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Get the number of repeated text values that are higher than 3 by ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959230#M11145</link>
      <description>&lt;P&gt;Well, for the needs of the user, I have to do this in Excel, so... I'm not used with calculated table in Excel (I don't even know if it's possible).&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 19:11:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959230#M11145</guid>
      <dc:creator>NumeroENAP</dc:creator>
      <dc:date>2020-03-04T19:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Get the number of repeated text values that are higher than 3 by ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959237#M11146</link>
      <description>&lt;P&gt;The best I did so far was to create a calculated column to count all different values :&lt;/P&gt;&lt;P&gt;= COUNTX(FILTER(GROUPS, EARLIER(GROUPS[VALUES])=GROUPES_FRA[VALUES]),GROUPS[VALUES])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, in my report, it always give it for all IDs. So, I need to add something to show it per ID, and that can also show it by value name for those which are 3 or higher.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 19:15:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959237#M11146</guid>
      <dc:creator>NumeroENAP</dc:creator>
      <dc:date>2020-03-04T19:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Get the number of repeated text values that are higher than 3 by ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959240#M11147</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="165118" data-lia-user-login="NumeroENAP" class="lia-mention lia-mention-user"&gt;NumeroENAP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ok, create a measure and filter by its value&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = calculate(countrows('Table'),allexcept('Table','Table'[ID],'Table'[VALUE]))&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 04 Mar 2020 19:16:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959240#M11147</guid>
      <dc:creator>az38</dc:creator>
      <dc:date>2020-03-04T19:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: Get the number of repeated text values that are higher than 3 by ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959251#M11150</link>
      <description>&lt;P&gt;This is the result :&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Value 1&amp;nbsp; &amp;nbsp; &amp;nbsp; 108&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Value 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Value 3&amp;nbsp; &amp;nbsp; &amp;nbsp; 101&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Value 1&amp;nbsp; &amp;nbsp; &amp;nbsp; 108&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Value 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Value 3&amp;nbsp; &amp;nbsp; &amp;nbsp; 101&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 19:21:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959251#M11150</guid>
      <dc:creator>NumeroENAP</dc:creator>
      <dc:date>2020-03-04T19:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Get the number of repeated text values that are higher than 3 by ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959424#M11161</link>
      <description>&lt;P&gt;Solution :&lt;BR /&gt;COUNT_VALUES_BY_ID:=CALCULATE(COUNTX('Table','Table'[Value]),FILTER('Table',COUNTX('Table','table'[Value])&amp;gt;2))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After that, I needed to play into the options of my dynamic table (uncheck totals and allow multiple filters by field).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 22:31:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-the-number-of-repeated-text-values-that-are-higher-than-3-by/m-p/959424#M11161</guid>
      <dc:creator>NumeroENAP</dc:creator>
      <dc:date>2020-03-04T22:31:05Z</dc:date>
    </item>
  </channel>
</rss>

