<?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: Identify time intervals with n number of records in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/895244#M8032</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="137611" data-lia-user-login="JarroVGIT" class="lia-mention lia-mention-user"&gt;JarroVGIT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Dataset consist of 3 million records. I will check out the options you mentioned.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your consistent support to the Power BI community!&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jan 2020 16:48:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-01-09T16:48:02Z</dc:date>
    <item>
      <title>Identify time intervals with n number of records</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/892474#M7910</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have a requirement to find all the 10 minute time intervals with more than 2 records, from a dataset.&lt;/P&gt;&lt;P&gt;My dataset looks like,&lt;/P&gt;&lt;P&gt;EventTime&lt;/P&gt;&lt;P&gt;01/01/2020 00:01:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:02:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:03:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:12:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:13:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:14:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:15:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:23:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:24:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:48:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:49:00&lt;/P&gt;&lt;P&gt;01/01/2020 00:58:00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want output like&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EventTime&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Count&lt;/P&gt;&lt;P&gt;01/01/2020 00:01:00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;/P&gt;&lt;P&gt;01/01/2020 00:02:00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&lt;/P&gt;&lt;P&gt;01/01/2020 00:03:00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&lt;/P&gt;&lt;P&gt;01/01/2020 00:12:00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&lt;/P&gt;&lt;P&gt;01/01/2020 00:13:00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;/P&gt;&lt;P&gt;01/01/2020 00:14:00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;/P&gt;&lt;P&gt;01/01/2020 00:19:00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;/P&gt;&lt;P&gt;01/01/2020 00:23:00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&lt;/P&gt;&lt;P&gt;01/01/2020 00:24:00&amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;01/01/2020 00:48:00&amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;&lt;P&gt;01/01/2020 00:49:00&amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;&lt;P&gt;01/01/2020 00:58:00&amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My dataset is very large and applying any measure to identify the nth record is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help on this issue is greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;GR&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 19:26:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/892474#M7910</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-07T19:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Identify time intervals with n number of records</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/892546#M7915</link>
      <description>&lt;P&gt;Use this as a calculated column:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CalculatedColumn = 
VAR _curEventTime = Table2[EventTime]
VAR _tmpTable = FILTER(Table2, Table2[EventTime]&amp;gt;= _curEventTime &amp;amp;&amp;amp; Table2[EventTime] &amp;lt; _curEventTime + 10/(24*60))
RETURN
COUNTROWS(_tmpTable)&lt;/LI-CODE&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;If any questions, let me know!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Djerro123&lt;/P&gt;&lt;P&gt;-------------------------------&lt;/P&gt;&lt;P&gt;If this answered your question, please &lt;STRONG&gt;mark it as the Solution&lt;/STRONG&gt;. This also helps others to find what they are looking for.&lt;/P&gt;&lt;P&gt;Keep those &lt;STRONG&gt;thumbs up&lt;/STRONG&gt; coming! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 20:23:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/892546#M7915</guid>
      <dc:creator>JarroVGIT</dc:creator>
      <dc:date>2020-01-07T20:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: Identify time intervals with n number of records</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/893518#M7963</link>
      <description>&lt;P&gt;Thank you djerro123! I tried your solution, but my dataset being very large, Power BI Desktop has been processing for morethan 12 hours now, and is not yet done.&amp;nbsp; Do you know of any alternatives?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 12:53:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/893518#M7963</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-08T12:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Identify time intervals with n number of records</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/893622#M7968</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;When you have a massive dataset, you might want to explore other ways to enrich your data. For example, you could use Azure Synapse Analytics to store your data and a Azure Databricks workspace to analyze this on a Spark cluster. In your usecase, where the dataset consist out of millions of rows (billions?), that is highly recommendable and faster.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How big is the dataset anyway? (in terms of Rows and GB?)&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 14:32:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/893622#M7968</guid>
      <dc:creator>JarroVGIT</dc:creator>
      <dc:date>2020-01-08T14:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: Identify time intervals with n number of records</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/895244#M8032</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="137611" data-lia-user-login="JarroVGIT" class="lia-mention lia-mention-user"&gt;JarroVGIT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Dataset consist of 3 million records. I will check out the options you mentioned.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your consistent support to the Power BI community!&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 16:48:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Identify-time-intervals-with-n-number-of-records/m-p/895244#M8032</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-09T16:48:02Z</dc:date>
    </item>
  </channel>
</rss>

