<?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: Filtering with Percentile.INC in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743671#M2406</link>
    <description>&lt;P&gt;I'm trying to avoid measures because I have 85 units each with 36 different scores I need to calculate 3 percentiles for. That would be close to 9,000 measures. Is there a way to do it with a column or variables so I can do it across a whole sheet of data and only look at one specific unit at a time?&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jul 2019 17:02:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-07-18T17:02:26Z</dc:date>
    <item>
      <title>Filtering with Percentile.INC</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/742716#M2353</link>
      <description>&lt;P&gt;I have two tables I am working with. One has multiple scores for multiple units (table 1) and the other is going to be a summary table with some other caclulations and will be unit specific (table 2). Like this&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;I want to be able to find the 45th, 65th, and 85th, percentiles for each unit from Table 1 and put the value in Table 2. Is there a way to set up a calculated column to find the given percentile from the scores for a particular unit in Table 1 and store it in Table 2.&amp;nbsp;For example if unit 401 had a 45th percentile of 70 I would want a value of 70 placed in B2 on table 2. (I know I show excel tables instead of power bi tables, but the visual is the same).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only have two units in the pictures but I will end up needing to do it for about 100 units each with around 100 samples, so I really don't want to have to make 3 measures for each unit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated, thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 23:02:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/742716#M2353</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-17T23:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering with Percentile.INC</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743159#M2366</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[Score 45] = PERCENTILE.INC ( T[Score], .45 )	
[Score 65] = PERCENTILE.INC ( T[Score], .65 )
[Score 85] = PERCENTILE.INC ( T[Score], .85 )

-- or

[Score 45] = PERCENTILE.EXC ( T[Score], .45 )	
[Score 65] = PERCENTILE.EXC ( T[Score], .65 )
[Score 85] = PERCENTILE.EXC( T[Score], .85 )&lt;/PRE&gt;&lt;P&gt;For the differences in the definition of the functions used, please see &lt;A href="https://dax.guide/percentile-inc/" target="_blank" rel="noopener"&gt;https://dax.guide/percentile-inc/&lt;/A&gt;&amp;nbsp;or&amp;nbsp;&lt;A href="https://dax.guide/percentile-inc/" target="_blank" rel="noopener"&gt;https://dax.guide/percentile-exc/.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above are MEASURES that will work with any filters that you put on the T table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Darek&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 09:18:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743159#M2366</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-18T09:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering with Percentile.INC</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743671#M2406</link>
      <description>&lt;P&gt;I'm trying to avoid measures because I have 85 units each with 36 different scores I need to calculate 3 percentiles for. That would be close to 9,000 measures. Is there a way to do it with a column or variables so I can do it across a whole sheet of data and only look at one specific unit at a time?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 17:02:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743671#M2406</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-18T17:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering with Percentile.INC</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743674#M2408</link>
      <description>&lt;P&gt;Who says 9000 measures? You clearly don't understand how the measures I wrote work. You only need 3 measures for the whole setup to do what you want... Jesus... :(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My advice is to learn something about DAX and Power BI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Darek&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 17:06:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743674#M2408</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-18T17:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering with Percentile.INC</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743685#M2410</link>
      <description>&lt;P&gt;I'm trying to....&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand you showed three measures and said that it would work for any filters. The problem I am trying to solve has 85 units and there are 36 contaminants per unit. I need to be able to filter through all the units individually and find the percentiles associated with each contaminent (score). I have 85 units each with 36 contaminants and I need 3 percentiles for each so 85*36*3 is just under 9,000.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe you could explain the measure a little more to me then and that could be what I am looking for?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 17:17:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743685#M2410</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-18T17:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering with Percentile.INC</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743699#M2412</link>
      <description>&lt;P&gt;You can put all your units on the row axis of a matrix, then all the contaminants on the column axis and then drop the measures onto the matrix. It'll display the percentiles for any combination of ( unit X contaminant ).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What's the problem here? I can't see any... The matrix can be filtered for particular units and contaminants with slicers as well to limit the data to display.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Darek&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 17:38:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743699#M2412</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-18T17:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering with Percentile.INC</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743703#M2413</link>
      <description>&lt;P&gt;I need to still run calculations with those numbers. They are not my final values to put in a matrix and display with slicers. They are an intermediate step to get to the final value where I will put everything in a matrix to display.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 17:40:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743703#M2413</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-18T17:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering with Percentile.INC</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743706#M2414</link>
      <description>&lt;P&gt;What's the problem again? Once the measures work for ANY selections, you are free to use them in other calculations... I have already given you a piece of good advice: &lt;STRONG&gt;Please&amp;nbsp;TRY TO LEARN SOMETHING ABOUT DAX AND POWER BI before you start using them for real work.&amp;nbsp;&lt;/STRONG&gt;There are many good books and websites about it. Just use Google to find them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your problems stem from the fact you know next to nothing of the tool that you're supposed to use. &lt;STRONG&gt;THAT'S PRETTY BAD&lt;/STRONG&gt;. It's like telling somebody who knows (almost) no maths at all to use it to calculate something.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I do something, I first try to learn the capabilities of the tool I'll be using. Is this not obvious? That should go without saying.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At this point I can tell you that you have all you need to do further calculations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Darek&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 17:47:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-with-Percentile-INC/m-p/743706#M2414</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-18T17:47:23Z</dc:date>
    </item>
  </channel>
</rss>

