<?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 Counting Groups of Repetition in Row in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Counting-Groups-of-Repetition-in-Row/m-p/1322187#M23263</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="189481" data-lia-user-login="danial_mcgreevy" class="lia-mention lia-mention-user"&gt;danial_mcgreevy&lt;/a&gt; , Try this measure with RANDOM_PERSON_ID in a visual &lt;/P&gt;
&lt;P&gt;countx(filter(summarize(table,table[RANDOM_PERSON_ID], "_1",count(*)), [_1]&amp;gt;=5),[RANDOM_PERSON_ID])&lt;/P&gt;</description>
    <pubDate>Tue, 25 Aug 2020 09:38:58 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2020-08-25T09:38:58Z</dc:date>
    <item>
      <title>DAX Counting Groups of Repetition in Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Counting-Groups-of-Repetition-in-Row/m-p/1321989#M23259</link>
      <description>&lt;P&gt;Hey&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not long into my DAX understanding and i've hit a brickwall.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to create a measure that counts if a RANDOM_PERSON_ID is repeated 5 times.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, my measure value with the test dataset should be 1 (9662AF155704B3F7).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Note that the table is on a Tabular Cube and does not have a uniqueidentifier and has about 46 million records.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help greatly appreciated.&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;&lt;P&gt;Danny&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 08:47:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Counting-Groups-of-Repetition-in-Row/m-p/1321989#M23259</guid>
      <dc:creator>danial_mcgreevy</dc:creator>
      <dc:date>2020-08-25T08:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Counting Groups of Repetition in Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Counting-Groups-of-Repetition-in-Row/m-p/1322187#M23263</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="189481" data-lia-user-login="danial_mcgreevy" class="lia-mention lia-mention-user"&gt;danial_mcgreevy&lt;/a&gt; , Try this measure with RANDOM_PERSON_ID in a visual &lt;/P&gt;
&lt;P&gt;countx(filter(summarize(table,table[RANDOM_PERSON_ID], "_1",count(*)), [_1]&amp;gt;=5),[RANDOM_PERSON_ID])&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 09:38:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Counting-Groups-of-Repetition-in-Row/m-p/1322187#M23263</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-08-25T09:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Counting Groups of Repetition in Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Counting-Groups-of-Repetition-in-Row/m-p/1322416#M23268</link>
      <description>&lt;P&gt;Huge thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Slight amendment to handle strings but works a charm.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;COUNTAX (&lt;BR /&gt;FILTER (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;Table,&lt;BR /&gt;Table[RANDOM_PERSON_ID],&lt;BR /&gt;"EqualTo5", COUNTA ( Table[RANDOM_PERSON_ID] )&lt;BR /&gt;),&lt;BR /&gt;[EqualTo5] = 5&lt;BR /&gt;),&lt;BR /&gt;Table[RANDOM_PERSON_ID]&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dannt&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 10:54:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Counting-Groups-of-Repetition-in-Row/m-p/1322416#M23268</guid>
      <dc:creator>danial_mcgreevy</dc:creator>
      <dc:date>2020-08-25T10:54:16Z</dc:date>
    </item>
  </channel>
</rss>

