<?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: STDEVX and PERCENTILEX.INC ; aside form the math, do they operate differently? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4774409#M182848</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="502093" data-lia-user-login="MarcoMazzocco" class="lia-mention lia-mention-user"&gt;MarcoMazzocco&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope the information provided above assists you in resolving the issue. If you have any additional questions or concerns, please do not hesitate to contact us. We are here to support you and will be happy to help with any further assistance you may need.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 24 Jul 2025 04:27:07 GMT</pubDate>
    <dc:creator>v-sshirivolu</dc:creator>
    <dc:date>2025-07-24T04:27:07Z</dc:date>
    <item>
      <title>STDEVX and PERCENTILEX.INC ; aside form the math, do they operate differently?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4748468#M181836</link>
      <description>&lt;P&gt;Hi...STDEVX works without a table function while PECENTILEX.INC forces me to use a table function like SUMMARIZECOLUMNS in order to get the correct result. Is there a mechanical difference in how the functions operate?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 12:19:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4748468#M181836</guid>
      <dc:creator>MarcoMazzocco</dc:creator>
      <dc:date>2025-06-30T12:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: STDEVX and PERCENTILEX.INC ; aside form the math, do they operate differently?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4748501#M181837</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="502093" data-lia-user-login="MarcoMazzocco" class="lia-mention lia-mention-user"&gt;MarcoMazzocco&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;The mechanical difference lies in the requirement of a table context for PERCENTILEX.INC to evaluate the entire dataset correctly, whereas STDEVX can operate directly on a column or an expression without needing an explicit table context.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;// Using STDEVX directly on a column&lt;BR /&gt;StandardDeviation = STDEVX(VALUES(Table[Column]), Table[Column])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;// Using PERCENTILEX.INC with SUMMARIZECOLUMNS to provide the correct context&lt;BR /&gt;Percentile = PERCENTILEX.INC(SUMMARIZECOLUMNS(Table[Column]), Table[Column], 0.5)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the&amp;nbsp;PERCENTILEX.INC&amp;nbsp;example,&amp;nbsp;SUMMARIZECOLUMNS&amp;nbsp;is used to create a table context that includes the values from&amp;nbsp;Table[Column], allowing the function to calculate the percentile correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 12:33:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4748501#M181837</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-06-30T12:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: STDEVX and PERCENTILEX.INC ; aside form the math, do they operate differently?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4749235#M181858</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="502093" data-lia-user-login="MarcoMazzocco" class="lia-mention lia-mention-user"&gt;MarcoMazzocco&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;STDEVX.P works directly with a table, but PERCENTILEX.INC needs a table expression like VALUES() to function correctly. The attached .pbix file shows this difference using SalesData and three measures.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Doesn't work reliably&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P&gt;PERCENTILEX.INC(SalesData[Sales], SalesData[Sales], 0.9)&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Works properly&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P&gt;PERCENTILEX.INC(VALUES(SalesData[Sales]), SalesData[Sales], 0.9)&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;Please find the below attached .pbix file for your reference.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If the response has addressed your query, please&lt;STRONG&gt;&amp;nbsp;Accept it as a solution&lt;/STRONG&gt;&amp;nbsp;and give a&amp;nbsp;&lt;STRONG&gt;'Kudos'&lt;/STRONG&gt;&amp;nbsp;so other members can easily find it&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Sreeteja.&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2025 05:28:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4749235#M181858</guid>
      <dc:creator>v-sshirivolu</dc:creator>
      <dc:date>2025-07-01T05:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: STDEVX and PERCENTILEX.INC ; aside form the math, do they operate differently?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4750913#M181923</link>
      <description>&lt;P&gt;Thanks !!&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 11:34:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4750913#M181923</guid>
      <dc:creator>MarcoMazzocco</dc:creator>
      <dc:date>2025-07-02T11:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: STDEVX and PERCENTILEX.INC ; aside form the math, do they operate differently?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4750919#M181924</link>
      <description>&lt;P&gt;This helps expalin the logic for sure. There seems to be an issue still since I'm using a measure instead of a column as the expression to evaluate. PERCENTILEX.INC(VALUES(table), [Measure],0.9) Does a measure change the behavior?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 11:43:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4750919#M181924</guid>
      <dc:creator>MarcoMazzocco</dc:creator>
      <dc:date>2025-07-02T11:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: STDEVX and PERCENTILEX.INC ; aside form the math, do they operate differently?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4754450#M182043</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="502093" data-lia-user-login="MarcoMazzocco" class="lia-mention lia-mention-user"&gt;MarcoMazzocco&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Absolutely, using a measure directly in PERCENTILEX.INC impacts its behaviour. For instance -&lt;/P&gt;
&lt;P&gt;PERCENTILEX.INC(VALUES('Table'), [Measure], 0.9)&lt;/P&gt;
&lt;P&gt;In this case, the measure returns the same value for every row because it doesn't respond to the row context created by VALUES(). This leads to incorrect percentile results.&lt;/P&gt;
&lt;P&gt;The solution is to wrap the measure in CALCULATE(), ensuring it evaluates per row -&lt;/P&gt;
&lt;P&gt;PERCENTILEX.INC(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;VALUES('Table'[Column]),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;CALCULATE([Measure]),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;0.9&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;This approach guarantees the measure recalculates for each row, delivering accurate results.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 04:46:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4754450#M182043</guid>
      <dc:creator>v-sshirivolu</dc:creator>
      <dc:date>2025-07-07T04:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: STDEVX and PERCENTILEX.INC ; aside form the math, do they operate differently?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4761296#M182329</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="502093" data-lia-user-login="MarcoMazzocco" class="lia-mention lia-mention-user"&gt;MarcoMazzocco&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;I hope the information provided above assists you in resolving the issue. If you have any additional questions or concerns, please do not hesitate to contact us. We are here to support you and will be happy to help with any further assistance you may need.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 04:06:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4761296#M182329</guid>
      <dc:creator>v-sshirivolu</dc:creator>
      <dc:date>2025-07-14T04:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: STDEVX and PERCENTILEX.INC ; aside form the math, do they operate differently?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4769862#M182676</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="502093" data-lia-user-login="MarcoMazzocco" class="lia-mention lia-mention-user"&gt;MarcoMazzocco&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We’re always here to support you&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jul 2025 04:35:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4769862#M182676</guid>
      <dc:creator>v-sshirivolu</dc:creator>
      <dc:date>2025-07-21T04:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: STDEVX and PERCENTILEX.INC ; aside form the math, do they operate differently?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4774409#M182848</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="502093" data-lia-user-login="MarcoMazzocco" class="lia-mention lia-mention-user"&gt;MarcoMazzocco&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope the information provided above assists you in resolving the issue. If you have any additional questions or concerns, please do not hesitate to contact us. We are here to support you and will be happy to help with any further assistance you may need.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 04:27:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/STDEVX-and-PERCENTILEX-INC-aside-form-the-math-do-they-operate/m-p/4774409#M182848</guid>
      <dc:creator>v-sshirivolu</dc:creator>
      <dc:date>2025-07-24T04:27:07Z</dc:date>
    </item>
  </channel>
</rss>

