<?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: Percentilex.inc/exc issue in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3299055#M122960</link>
    <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="460879" data-lia-user-login="king4646" class="lia-mention lia-mention-user"&gt;king4646&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This seems to have replied to you before, sorry, this is still a problem for you.If your last problem is solved, I will probably miss your reply, because our Dashboard will not remind you, you can create a new case like this, which will assign you the corresponding engineer to help you solve the problem .&lt;/P&gt;
&lt;P&gt;I check it in the pbix .We can clearly see that there are two dimension fields placed in your Customer visual.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;So in order to return the correct value, we need to add these two dimension fields to our measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;20th percentile = var _20= PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],'Published'[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.2)
Return
_20&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;80th percentile = var _80= PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.8)
Return
_80&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Dynamic Cust Pts = var _20= PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.2)
var _40 = PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.4)
var _60 = PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.6)
var _80 = PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.8)
var _90 = PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.9)
var _100 = PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 1)
var _revenue = SUM(Published[Revenue])
return
IF( _revenue &amp;lt; _20 ,1, IF(_revenue &amp;gt;= _20 &amp;amp;&amp;amp;_revenue&amp;lt;_40 ,2 ,IF( _revenue &amp;gt;=_40 &amp;amp;&amp;amp; _revenue&amp;lt;_60 ,3, IF(_revenue&amp;gt;=_60 &amp;amp;&amp;amp; _revenue &amp;lt; _80 , 4 , IF(_revenue&amp;gt;=_80 &amp;amp;&amp;amp; _revenue &amp;lt; _90 ,5 , 6)))))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then we can get this:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Aniya Zhang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt; it as the solution&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 23 Jun 2023 03:37:40 GMT</pubDate>
    <dc:creator>v-yueyunzh-msft</dc:creator>
    <dc:date>2023-06-23T03:37:40Z</dc:date>
    <item>
      <title>Percentilex.inc/exc issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3295243#M122751</link>
      <description>&lt;P&gt;Hi Guys, I'm having an absolutely huge headache from a measure one of the guys here created for my excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems to work absolutely fine when I am looking at industry level it scores 1-6 appropriately, at customer level it is broken and only scores 4-6 so the percentile readings must be off in the way it's interpreting the revenue on the pivot table&lt;/P&gt;&lt;P&gt;I recreated both measures in BI to test and from both a customer and industry point of view the formula works! Im lost anyone able to offer support or context on how to get it working in excel 365?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Summary&lt;/P&gt;&lt;P&gt;- Formula working in BI for both customer and industry&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;- Formula working in excel pivot for industry&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;- Formula not calculating the percentiles correctly on customer measure in excel and therefore scoring customers 4-6 instead of 1-6&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- on the sample file it's scoring everybody 6&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The formula is&lt;/P&gt;&lt;P&gt;=VAR _20 = PERCENTILEX.INC(ADDCOLUMNS(ALLSELECTED(Published[Customer]),"sum of revenue", CALCULATE(SUM(Published[Revenue]))),[sum of revenue],0.2) VAR _40 = PERCENTILEX.INC(ADDCOLUMNS(ALLSELECTED(Published[Customer]),"sum of revenue", CALCULATE(SUM(Published[Revenue]))),[sum of revenue],0.4) VAR _60 = PERCENTILEX.INC(ADDCOLUMNS(ALLSELECTED(Published[Customer]),"sum of revenue", CALCULATE(SUM(Published[Revenue]))),[sum of revenue],0.6) VAR _80 = PERCENTILEX.INC(ADDCOLUMNS(ALLSELECTED(Published[Customer]),"sum of revenue", CALCULATE(SUM(Published[Revenue]))),[sum of revenue],0.8) VAR _90 = PERCENTILEX.INC(ADDCOLUMNS(ALLSELECTeD(Published[Customer]),"sum of revenue", CALCULATE(SUM(Published[Revenue]))),[sum of revenue],0.9) VAR _100 =PERCENTILEX.INC(ADDCOLUMNS(ALLSELECTED(Published[Customer]),"Sum of revenue",CALCULATE(SUM(Published[Revenue]))),[Sum of revenue],1) VAR _revenue = SUM(Published[Revenue]) RETURN IF(_revenue&amp;lt;_20,1,IF(_revenue&amp;gt;=_20&amp;amp;&amp;amp;_revenue&amp;lt;_40,2,IF(_revenue&amp;gt;=_40&amp;amp;&amp;amp;_revenue&amp;lt;_60,3,IF(_revenue&amp;gt;=_60&amp;amp;&amp;amp;_revenue&amp;lt;_80,4,IF(_revenue&amp;gt;=_80&amp;amp;&amp;amp;_revenue&amp;lt;_90,5,6)))))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link to the sample file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://1drv.ms/x/s!AiUg-AKQ3-onnGyeZjZF9yQ0K8LS" target="_blank"&gt;https://1drv.ms/x/s!AiUg-AKQ3-onnGyeZjZF9yQ0K8LS&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 10:23:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3295243#M122751</guid>
      <dc:creator>king4646</dc:creator>
      <dc:date>2023-06-21T10:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Percentilex.inc/exc issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3295643#M122783</link>
      <description>&lt;P&gt;To add further insight to this. I've got a slicer that excludes certain customers, when I deselect and allow all customers to be looked at the formula works so it is have trouble with a filter being applied to the pivot table and then it would seem I am either using ALLSELECTED wrong or there's a misfire on the ALLSELECTED function in this context&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 13:03:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3295643#M122783</guid>
      <dc:creator>king4646</dc:creator>
      <dc:date>2023-06-21T13:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Percentilex.inc/exc issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3299055#M122960</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="460879" data-lia-user-login="king4646" class="lia-mention lia-mention-user"&gt;king4646&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This seems to have replied to you before, sorry, this is still a problem for you.If your last problem is solved, I will probably miss your reply, because our Dashboard will not remind you, you can create a new case like this, which will assign you the corresponding engineer to help you solve the problem .&lt;/P&gt;
&lt;P&gt;I check it in the pbix .We can clearly see that there are two dimension fields placed in your Customer visual.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;So in order to return the correct value, we need to add these two dimension fields to our measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;20th percentile = var _20= PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],'Published'[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.2)
Return
_20&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;80th percentile = var _80= PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.8)
Return
_80&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Dynamic Cust Pts = var _20= PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.2)
var _40 = PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.4)
var _60 = PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.6)
var _80 = PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.8)
var _90 = PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.9)
var _100 = PERCENTILEX.INC(ADDCOLUMNS( ALLSELECTED(Published[Customer],Published[Customer_Media_Type]) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 1)
var _revenue = SUM(Published[Revenue])
return
IF( _revenue &amp;lt; _20 ,1, IF(_revenue &amp;gt;= _20 &amp;amp;&amp;amp;_revenue&amp;lt;_40 ,2 ,IF( _revenue &amp;gt;=_40 &amp;amp;&amp;amp; _revenue&amp;lt;_60 ,3, IF(_revenue&amp;gt;=_60 &amp;amp;&amp;amp; _revenue &amp;lt; _80 , 4 , IF(_revenue&amp;gt;=_80 &amp;amp;&amp;amp; _revenue &amp;lt; _90 ,5 , 6)))))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then we can get this:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Aniya Zhang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt; it as the solution&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 03:37:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3299055#M122960</guid>
      <dc:creator>v-yueyunzh-msft</dc:creator>
      <dc:date>2023-06-23T03:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Percentilex.inc/exc issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3301237#M123144</link>
      <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately on excel 365 I'm getting the error "this formula is invalid or incomplete: 'too many arguments were passed to the ALLSELECTED function. The maximum argument count&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have removed the customer media type field from my pivot table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For original measure you created for industry type works fine when changing "Industry" to "Customer". When my pivot is all customers and revenue it is working as expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue is when I use my slicer, I filter by a field called EXCLUDED CUSTOMER Y_N. I select the "no" to only bring in customers that are not excluded and at that point the percentiles calculated seem to break. It know what 100% is but returns blank right up to 80th percentile and then a significantly low number is pulling through as 80th percentile causing all customers to score 4-6&lt;/P&gt;</description>
      <pubDate>Sun, 25 Jun 2023 21:29:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3301237#M123144</guid>
      <dc:creator>king4646</dc:creator>
      <dc:date>2023-06-25T21:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: Percentilex.inc/exc issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3301482#M123157</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="460879" data-lia-user-login="king4646" class="lia-mention lia-mention-user"&gt;king4646&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your quick response !&lt;/P&gt;
&lt;P&gt;Sorry for i have no excel developer experience and for your issue is "&lt;SPAN&gt;when I use my slicer, I filter by a field called EXCLUDED CUSTOMER Y_N. I select the "no" to only bring in customers that are not excluded and at that point the percentiles calculated seem to break.&lt;/SPAN&gt;"&lt;BR /&gt;I'm testing this here and I'm sorry, this really doesn't support Joan Slicer. Maybe it's a matter of context!&lt;/P&gt;
&lt;P&gt;And for this , can you try to use this dax code to test , i modify the ALLSELECTED() function.You can try to check if this can meet your need:(This is put for the Customer table visual)&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;20th percentile-2 = var _20= PERCENTILEX.INC(ADDCOLUMNS(CALCULATETABLE( SUMMARIZE('Published','Published'[Customer_Media_Type],'Published'[Customer]) ,ALL(Published[Customer_Media_Type],'Published'[Customer]))  ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.2)
Return
_20&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;80th percentile-2 = var _80= PERCENTILEX.INC(ADDCOLUMNS(CALCULATETABLE( SUMMARIZE('Published','Published'[Customer_Media_Type],'Published'[Customer]) ,ALL(Published[Customer_Media_Type],'Published'[Customer])),"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.8)
Return
_80&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Dynamic Cust Pts = var _20= PERCENTILEX.INC(ADDCOLUMNS(CALCULATETABLE( SUMMARIZE('Published','Published'[Customer_Media_Type],'Published'[Customer]) ,ALL(Published[Customer_Media_Type],'Published'[Customer])),"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.2)
var _40 = PERCENTILEX.INC(ADDCOLUMNS( CALCULATETABLE( SUMMARIZE('Published','Published'[Customer_Media_Type],'Published'[Customer]) ,ALL(Published[Customer_Media_Type],'Published'[Customer])) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.4)
var _60 = PERCENTILEX.INC(ADDCOLUMNS( CALCULATETABLE( SUMMARIZE('Published','Published'[Customer_Media_Type],'Published'[Customer]) ,ALL(Published[Customer_Media_Type],'Published'[Customer])),"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.6)
var _80 = PERCENTILEX.INC(ADDCOLUMNS(CALCULATETABLE( SUMMARIZE('Published','Published'[Customer_Media_Type],'Published'[Customer]) ,ALL(Published[Customer_Media_Type],'Published'[Customer])) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.8)
var _90 = PERCENTILEX.INC(ADDCOLUMNS( CALCULATETABLE( SUMMARIZE('Published','Published'[Customer_Media_Type],'Published'[Customer]) ,ALL(Published[Customer_Media_Type],'Published'[Customer])) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 0.9)
var _100 = PERCENTILEX.INC(ADDCOLUMNS( CALCULATETABLE( SUMMARIZE('Published','Published'[Customer_Media_Type],'Published'[Customer]) ,ALL(Published[Customer_Media_Type],'Published'[Customer])) ,"Sum of Revenue" , CALCULATE(SUM(Published[Revenue]))) , [Sum of Revenue] , 1)
var _revenue = SUM(Published[Revenue])
return
IF( _revenue &amp;lt; _20 ,1, IF(_revenue &amp;gt;= _20 &amp;amp;&amp;amp;_revenue&amp;lt;_40 ,2 ,IF( _revenue &amp;gt;=_40 &amp;amp;&amp;amp; _revenue&amp;lt;_60 ,3, IF(_revenue&amp;gt;=_60 &amp;amp;&amp;amp; _revenue &amp;lt; _80 , 4 , IF(_revenue&amp;gt;=_80 &amp;amp;&amp;amp; _revenue &amp;lt; _90 ,5 , 6)))))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The result is as follows:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;we can better help you solve the problem. (You can also upload you sample .pbix [without sensitive data] to the OneDrive and share with the OneDrive link to me ! )&lt;/P&gt;
&lt;P&gt;Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Aniya Zhang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt; it as the solution&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 03:02:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3301482#M123157</guid>
      <dc:creator>v-yueyunzh-msft</dc:creator>
      <dc:date>2023-06-26T03:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Percentilex.inc/exc issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3301934#M123208</link>
      <description>&lt;P&gt;You are a genius, I love you &lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 08:31:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentilex-inc-exc-issue/m-p/3301934#M123208</guid>
      <dc:creator>king4646</dc:creator>
      <dc:date>2023-06-26T08:31:49Z</dc:date>
    </item>
  </channel>
</rss>

