<?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: Using PERCENTILE.INC inside CALCULATE/FILTER returning nothing in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-PERCENTILE-INC-inside-CALCULATE-FILTER-returning-nothing/m-p/1382253#M25263</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="52518" data-lia-user-login="Fowmy" class="lia-mention lia-mention-user"&gt;Fowmy&lt;/a&gt;&amp;nbsp;thanks! Seems simple now.&lt;/P&gt;</description>
    <pubDate>Sun, 20 Sep 2020 17:00:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-09-20T17:00:10Z</dc:date>
    <item>
      <title>Using PERCENTILE.INC inside CALCULATE/FILTER returning nothing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-PERCENTILE-INC-inside-CALCULATE-FILTER-returning-nothing/m-p/1382178#M25260</link>
      <description>&lt;P&gt;Hello! I am building a dashboard which trims outlier data from a year's worth of hourly data. I am using PERCENTILE.INC to replicate Excel's TRIMMEAN, filtering the bottom and top 10th percentile and creating a new average.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I enter static values into my DAX measure, it works, but if I refer to my PERCENTILE.INC measures, it gives me nothing. Examples below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I read the below article stating that the function just doesn't work inside CALCULATE, and I should consider creating a variable. I don't know much about variables yet, so unsure if this is the best solution or how best to approach it. Any help appreciated, I want to keep my measure dynamic to changes to the values of these PERCENTILE measures.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Desktop/PERCENTILE-inside-CALCULATE-does-not-anymore-recognise-data/m-p/49990" target="_blank"&gt;https://community.powerbi.com/t5/Desktop/PERCENTILE-inside-CALCULATE-does-not-anymore-recognise-data/m-p/49990&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Sep 2020 13:59:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-PERCENTILE-INC-inside-CALCULATE-FILTER-returning-nothing/m-p/1382178#M25260</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-20T13:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using PERCENTILE.INC inside CALCULATE/FILTER returning nothing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-PERCENTILE-INC-inside-CALCULATE-FILTER-returning-nothing/m-p/1382185#M25262</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Please check this measure, enter the correct table, and measure&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Trimmed funnel average conversion = 

VAR 10PC = [10TH PERCENTILE VISIT CONVERSION]
VAR 90PC = [90TH PERCENTILE VISIT CONVERSION]

RETURN
CALCULATE ( 
	[AVERAGE FUNNEL MEAURE]
FILTER ( 
	FLOSE_METRICS,
	[FUNNEL VISIT CONVERSION] &amp;gt; 10PC &amp;amp;&amp;amp;
	[FUNNEL VISIT CONVERSION] &amp;lt; 90PC
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;________________________&lt;/P&gt;&lt;P&gt;If my answer was helpful, please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt; to help the other members find it&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Click on the &lt;STRONG&gt;Thumbs-Up icon &lt;/STRONG&gt;if you like this reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/channel/UCKwBEguA8IlBubIobaOormg?sub_confirmation=1" target="_blank"&gt;&lt;FONT color="blue"&gt;YouTube&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp; &lt;A href="https://linkedin.com/in/fowmy" target="_blank"&gt;&lt;FONT color="blue"&gt;LinkedIn&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Sep 2020 14:47:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-PERCENTILE-INC-inside-CALCULATE-FILTER-returning-nothing/m-p/1382185#M25262</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2020-09-20T14:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using PERCENTILE.INC inside CALCULATE/FILTER returning nothing</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-PERCENTILE-INC-inside-CALCULATE-FILTER-returning-nothing/m-p/1382253#M25263</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="52518" data-lia-user-login="Fowmy" class="lia-mention lia-mention-user"&gt;Fowmy&lt;/a&gt;&amp;nbsp;thanks! Seems simple now.&lt;/P&gt;</description>
      <pubDate>Sun, 20 Sep 2020 17:00:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-PERCENTILE-INC-inside-CALCULATE-FILTER-returning-nothing/m-p/1382253#M25263</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-20T17:00:10Z</dc:date>
    </item>
  </channel>
</rss>

