<?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/Group(Bins) for running buckets in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/757108#M3064</link>
    <description>&lt;P&gt;This is a sample of the table again (simplified):&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Time&lt;/TD&gt;&lt;TD&gt;Time Bucket&lt;/TD&gt;&lt;TD&gt;BucketSortOrder&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01:10:00&lt;/TD&gt;&lt;TD&gt;23-2&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01:10:00&lt;/TD&gt;&lt;TD&gt;0-3&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01:10:00&lt;/TD&gt;&lt;TD&gt;1-4&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;06:20:22&lt;/TD&gt;&lt;TD&gt;4-7&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;06:20:22&lt;/TD&gt;&lt;TD&gt;5-8&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;06:20:22&lt;/TD&gt;&lt;TD&gt;6-9&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;What you have to do is this:&lt;/P&gt;&lt;P&gt;1. Create a table with all your buckets in it. It has to look like this:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Time Bucket&lt;/TD&gt;&lt;TD&gt;StartInclusive&lt;/TD&gt;&lt;TD&gt;EndExclusive&lt;/TD&gt;&lt;TD&gt;BucketSortOrder&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;00:00:00-03:00:00&lt;/TD&gt;&lt;TD&gt;00:00:00&lt;/TD&gt;&lt;TD&gt;03:00:00&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01:00:00-04:00:00&lt;/TD&gt;&lt;TD&gt;01:00:00&lt;/TD&gt;&lt;TD&gt;04:00:00&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02:00:00-05:00:00&lt;/TD&gt;&lt;TD&gt;02:00:00&lt;/TD&gt;&lt;TD&gt;05:00:00&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03:00:00-06:00:00&lt;/TD&gt;&lt;TD&gt;03:00:00&lt;/TD&gt;&lt;TD&gt;06:00:00&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;04:00:00-07:00:00&lt;/TD&gt;&lt;TD&gt;04:00:00&lt;/TD&gt;&lt;TD&gt;07:00:00&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;and so on… up to&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23:00:00-02:00:00&lt;/TD&gt;&lt;TD&gt;23:00:00&lt;/TD&gt;&lt;TD&gt;02:00:00&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;2. Once you have it, you cross-join it with the table that stores your unique times. Cross-joining in PQ (M) is easy: just create a column and type "=Your_Table_Name".&lt;/P&gt;&lt;P&gt;3. After that, you expand the table, so that the expanded columns appear.&lt;/P&gt;&lt;P&gt;4. Then you add another column that will now return TRUE if&lt;/P&gt;&lt;P&gt;[Time] &amp;gt;= [StartInclusive] and [Time] &amp;lt; [EndExclusive].&lt;/P&gt;&lt;P&gt;5. Then you filter the table leaving only the rows where the above is TRUE.&lt;/P&gt;&lt;P&gt;6. Then you remove all the columns apart from [Time], [Time Bucket] and [BucketSortOrder].&lt;/P&gt;&lt;P&gt;7. Now join the [Time] to the original column with the times and do all the things I've explained before...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Darek&lt;/P&gt;</description>
    <pubDate>Sun, 04 Aug 2019 09:25:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-08-04T09:25:14Z</dc:date>
    <item>
      <title>DAX/Group(Bins) for running buckets</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/756623#M3039</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My data set has a column named "Time" with time stamp values.&lt;/P&gt;&lt;P&gt;When I right click the field "Time" &amp;amp; create new group, it provides me an way to create groups/bins/buckets of equal specifed durations. Apparently, it creates a column in the table with corresponding bucket value matching "Time" column. When I create a continuous bar chart/histogram, the bucktets falls in X axis and count / total for some other fields falls in Y axis. So far everyone aware.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My requirement is that I need the X axis to be a running bucket.&lt;/P&gt;&lt;P&gt;Instead of X axis value as follows,&lt;/P&gt;&lt;P&gt;00:00:00 AM, 3:00:00 AM, 6:00:00 AM, 9:00:00 AM, 12:00:00 PM, 3:00:00 PM, 6:00:00 PM, 9:00:00 PM &amp;amp;&amp;nbsp; 12:00:00 AM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need the X axis value to be as follows.&lt;/P&gt;&lt;P&gt;00:00:00 AM - 03:00:00 AM,&amp;nbsp;01:00:00 AM - 04:00:00 AM,&amp;nbsp;02:00:00 AM - 05:00:00 AM, and so on till&amp;nbsp;09:00:00 PM - 12:00:00 AM.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I aware a histogram cannot be created with such X axis. But I can create a clustered/stack column chart with the values as X axis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any workaround would help me a lot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vishvesh R&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2019 17:41:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/756623#M3039</guid>
      <dc:creator>vissvess</dc:creator>
      <dc:date>2019-08-02T17:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: DAX/Group(Bins) for running buckets</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/756790#M3047</link>
      <description>&lt;P&gt;Mate, you have to create a table (in Power Query) of this structure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Time Buckets (table)&lt;/P&gt;&lt;P&gt;Time|Time Bucket|BucketSortOrder&lt;/P&gt;&lt;P&gt;01:10:00|&lt;SPAN&gt;00:00:00 AM - 03:00:00 AM|1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;01:10:00|01:00:00 AM - 04:00:00 AM|2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;where&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; [Time] is a (hidden) column with all the times in your table,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; [Time Bucket] is the bucket into which the Time falls (one time will fall into many buckets),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; [BucketSortOrder] is a (hidden) column that you'll be sorting the buckets by.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Remember that if a bucket A appears in the table many times, it has to have the same BucketSortOrder.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Once this table's been created, you have to join it to your table on the [Time] column and the relationship will be M2M. Filtering will be one-way only, from [Time Buckets] to your table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Then you can take the [Time Bucket] column from the Time Buckets table, drop it onto your visual and add your measures. They should aggregate correctly for the time periods/categories.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Darek&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2019 22:55:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/756790#M3047</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-02T22:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: DAX/Group(Bins) for running buckets</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/757068#M3060</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the inputs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As per your advise, I need to create a table as shown by you.&lt;/P&gt;&lt;P&gt;For column 1 [Time], from my table I'll reference my existing query, remove other columns &amp;amp; remove duplicate in the specified column.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For column 2 &amp;amp; 3, I was working out the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As I have 3 hours bucket, for every timestamp, I'll have three buckets, if I am not wrong.&lt;/P&gt;&lt;P&gt;So If I create 3 columns with column name as sort order (1,23) so that I'll unpivot to create it as specified.&lt;/P&gt;&lt;P&gt;But If I use conditional column, I was not able to achieve the result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="42973" data-lia-user-login="Zubair_Muhammad" class="lia-mention lia-mention-user"&gt;Zubair_Muhammad&lt;/a&gt;&amp;nbsp;&amp;amp; Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need your help for the power query stuff.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2019 02:41:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/757068#M3060</guid>
      <dc:creator>vissvess</dc:creator>
      <dc:date>2019-08-04T02:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: DAX/Group(Bins) for running buckets</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/757108#M3064</link>
      <description>&lt;P&gt;This is a sample of the table again (simplified):&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Time&lt;/TD&gt;&lt;TD&gt;Time Bucket&lt;/TD&gt;&lt;TD&gt;BucketSortOrder&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01:10:00&lt;/TD&gt;&lt;TD&gt;23-2&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01:10:00&lt;/TD&gt;&lt;TD&gt;0-3&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01:10:00&lt;/TD&gt;&lt;TD&gt;1-4&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;06:20:22&lt;/TD&gt;&lt;TD&gt;4-7&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;06:20:22&lt;/TD&gt;&lt;TD&gt;5-8&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;06:20:22&lt;/TD&gt;&lt;TD&gt;6-9&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;What you have to do is this:&lt;/P&gt;&lt;P&gt;1. Create a table with all your buckets in it. It has to look like this:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Time Bucket&lt;/TD&gt;&lt;TD&gt;StartInclusive&lt;/TD&gt;&lt;TD&gt;EndExclusive&lt;/TD&gt;&lt;TD&gt;BucketSortOrder&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;00:00:00-03:00:00&lt;/TD&gt;&lt;TD&gt;00:00:00&lt;/TD&gt;&lt;TD&gt;03:00:00&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01:00:00-04:00:00&lt;/TD&gt;&lt;TD&gt;01:00:00&lt;/TD&gt;&lt;TD&gt;04:00:00&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02:00:00-05:00:00&lt;/TD&gt;&lt;TD&gt;02:00:00&lt;/TD&gt;&lt;TD&gt;05:00:00&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03:00:00-06:00:00&lt;/TD&gt;&lt;TD&gt;03:00:00&lt;/TD&gt;&lt;TD&gt;06:00:00&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;04:00:00-07:00:00&lt;/TD&gt;&lt;TD&gt;04:00:00&lt;/TD&gt;&lt;TD&gt;07:00:00&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;and so on… up to&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23:00:00-02:00:00&lt;/TD&gt;&lt;TD&gt;23:00:00&lt;/TD&gt;&lt;TD&gt;02:00:00&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;2. Once you have it, you cross-join it with the table that stores your unique times. Cross-joining in PQ (M) is easy: just create a column and type "=Your_Table_Name".&lt;/P&gt;&lt;P&gt;3. After that, you expand the table, so that the expanded columns appear.&lt;/P&gt;&lt;P&gt;4. Then you add another column that will now return TRUE if&lt;/P&gt;&lt;P&gt;[Time] &amp;gt;= [StartInclusive] and [Time] &amp;lt; [EndExclusive].&lt;/P&gt;&lt;P&gt;5. Then you filter the table leaving only the rows where the above is TRUE.&lt;/P&gt;&lt;P&gt;6. Then you remove all the columns apart from [Time], [Time Bucket] and [BucketSortOrder].&lt;/P&gt;&lt;P&gt;7. Now join the [Time] to the original column with the times and do all the things I've explained before...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Darek&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2019 09:25:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/757108#M3064</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-04T09:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: DAX/Group(Bins) for running buckets</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/757629#M3084</link>
      <description>&lt;P&gt;Hi, Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The solution is awesome. But, since my table which contains the timestamp column is somewhat huge and for the 12 row new time bucket table merging, the preview generation and applying changes takes nearly 2 hours.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand that the reason behind would be inserting and expanding the entire table to each bucket row in new table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any other workaround for checking entry by entry to reduce the computation?.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apart from above, Could you please clarify the need for "Bucket sort order" column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An additional requirement if possible, does it possible to generate the time bucket table automatically based on dynamic bin size and start time. Say, I need the bucket size to be 1.5 hours and start time of buckets is 8:30:00.&lt;/P&gt;&lt;P&gt;If possible, can I provide an way for the user to change the above parameters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 10:04:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/757629#M3084</guid>
      <dc:creator>vissvess</dc:creator>
      <dc:date>2019-08-05T10:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: DAX/Group(Bins) for running buckets</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/762709#M3259</link>
      <description>First of all, any kind of bucketing MUST be pre-calculated in advance for this to work the way you want. If you have 10 types of bucketing, you'll need 10 different columns in your table. Easy as that, no workaround is possible because you have to have an x-axis with the buckets and you can't put a measure on the x-axis, only a dimension's values.&lt;BR /&gt;&lt;BR /&gt;Secondly, BucketSortOrder is in there to ensure that your buckets, which are text labels, appear correctly ordered (by time, not alphabetically).&lt;BR /&gt;&lt;BR /&gt;Thirdly, of course the M code required to do the above CAN BE OPTIMIZED. When I get a chance, I'll try to manually craft the script instead of relying on the UI. One optimization I can see immediately is that you could use DISTINCT stamp times only instead the whole of your table. That could reduce the cross join. But even a cross join is not necessary to get what you want but that requires manual intervention. If you know M, then you could do it yourself.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;Darek</description>
      <pubDate>Fri, 09 Aug 2019 09:16:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/762709#M3259</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-09T09:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: DAX/Group(Bins) for running buckets</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/762905#M3270</link>
      <description>When you say "somewhat huge", how many rows are you talking about?&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;Darek</description>
      <pubDate>Fri, 09 Aug 2019 13:34:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Group-Bins-for-running-buckets/m-p/762905#M3270</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-09T13:34:53Z</dc:date>
    </item>
  </channel>
</rss>

