<?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: Possible Bucketing in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-Bucketing/m-p/3448255#M131272</link>
    <description>&lt;P&gt;Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot). Leave out anything not related to the issue. &lt;BR /&gt;If you are unsure how to do that please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;If you want to get answers faster please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Sep 2023 16:23:02 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2023-09-26T16:23:02Z</dc:date>
    <item>
      <title>Possible Bucketing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-Bucketing/m-p/3445949#M131100</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a simple measure that calculates the % of losses that I have:&amp;nbsp;[% losses] = Divide ( loss, allquantity)&lt;/P&gt;&lt;P&gt;What I'm trying to figure out is a way to filter that measure, [%losses], given certain criteria.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example: which is the total [%losses] when considering values that are less than 5%, 10% and so on, like its shows in the following graph:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought this was a case of dynamic sgmentation/bucketing but i cant seem to make it work.&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2023 13:07:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-Bucketing/m-p/3445949#M131100</guid>
      <dc:creator>Kebas_Leech</dc:creator>
      <dc:date>2023-09-25T13:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Possible Bucketing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-Bucketing/m-p/3448255#M131272</link>
      <description>&lt;P&gt;Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot). Leave out anything not related to the issue. &lt;BR /&gt;If you are unsure how to do that please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;If you want to get answers faster please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 16:23:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-Bucketing/m-p/3448255#M131272</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-09-26T16:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Possible Bucketing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-Bucketing/m-p/3449340#M131348</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="377760" data-lia-user-login="Kebas_Leech" class="lia-mention lia-mention-user"&gt;Kebas_Leech&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest you to create a Percentage table to help your calculation.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Percentage = 
GENERATESERIES(0,1,0.05)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
CALCULATE(DISTINCTCOUNT('Table'[ID]),FILTER('Table',[% losses]&amp;lt;=MAX(Percentage[Percentage])))&lt;/LI-CODE&gt;
&lt;P&gt;Result is as below.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Sep 2023 09:07:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-Bucketing/m-p/3449340#M131348</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-27T09:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Possible Bucketing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-Bucketing/m-p/3451397#M131487</link>
      <description>&lt;P&gt;Hello&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First of all, I want to personally thank you for using your time to help me.&lt;/P&gt;&lt;P&gt;It worked, I made some adjustments but overall, what was missing was the generateseries.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;Kindly&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 09:25:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Possible-Bucketing/m-p/3451397#M131487</guid>
      <dc:creator>Kebas_Leech</dc:creator>
      <dc:date>2023-09-28T09:25:14Z</dc:date>
    </item>
  </channel>
</rss>

