<?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: How can I calculate running percentile in DAX? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2509128#M69558</link>
    <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="387682" data-lia-user-login="austin_infinite" class="lia-mention lia-mention-user"&gt;austin_infinite&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You might consider creating a Rank using a computed column:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
SUMX(FILTER(ALL('Table'),'Table'[Rank]&amp;lt;=MAX('Table'[Rank])),[Percentile])&lt;/LI-CODE&gt;
&lt;P&gt;2. Result:&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;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
    <pubDate>Thu, 12 May 2022 02:49:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-05-12T02:49:44Z</dc:date>
    <item>
      <title>How can I calculate running percentile in DAX?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2502906#M69226</link>
      <description>&lt;P&gt;Can't quite figure out how to calculate running percentile in DAX.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Excel I used:&lt;/P&gt;&lt;PRE&gt;=+SUMIF([Rank],"&amp;lt;="&amp;amp;[@Rank],[Percentile])&lt;/PRE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated!&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 19:12:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2502906#M69226</guid>
      <dc:creator>austin_infinite</dc:creator>
      <dc:date>2022-05-09T19:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate running percentile in DAX?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2502917#M69228</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="387682" data-lia-user-login="austin_infinite" class="lia-mention lia-mention-user"&gt;austin_infinite&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Balance, Rank and Percentile, are these measures or columns in your source data?&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 19:22:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2502917#M69228</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-05-09T19:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate running percentile in DAX?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2503007#M69236</link>
      <description>&lt;P&gt;Those are all DAX Measures.&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 20:01:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2503007#M69236</guid>
      <dc:creator>austin_infinite</dc:creator>
      <dc:date>2022-05-09T20:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate running percentile in DAX?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2503405#M69264</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="387682" data-lia-user-login="austin_infinite" class="lia-mention lia-mention-user"&gt;austin_infinite&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are trying to calculate the moving average of a measure based on another measure. Usually this type of calcuation is heavy and is difficult to find an efficient solution. You may try the following. If not feasible then the options are either a calculated column or a calculated table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Running Percentile =
VAR CurrentRank = [Rank]
RETURN
    SUMX (
        FILTER ( ALLSELECTED ( Data[Bill_to_Customer_No] ), [Rank] &amp;lt;= CurrentRank ),
        [Percentile]
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 03:05:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2503405#M69264</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-05-10T03:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: How can I calculate running percentile in DAX?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2509128#M69558</link>
      <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="387682" data-lia-user-login="austin_infinite" class="lia-mention lia-mention-user"&gt;austin_infinite&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You might consider creating a Rank using a computed column:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
SUMX(FILTER(ALL('Table'),'Table'[Rank]&amp;lt;=MAX('Table'[Rank])),[Percentile])&lt;/LI-CODE&gt;
&lt;P&gt;2. Result:&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;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 02:49:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-calculate-running-percentile-in-DAX/m-p/2509128#M69558</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-12T02:49:44Z</dc:date>
    </item>
  </channel>
</rss>

