<?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 you Normalise Measure Values (filtered by Column Value)? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1334465#M23723</link>
    <description>&lt;P&gt;Thank you! I was able to use one of the formulas from this article.&lt;BR /&gt;&lt;BR /&gt;MAXX(ALLSELECTED(column filter), [Measure]) and the same for min. Works perfectly!&lt;/P&gt;</description>
    <pubDate>Sun, 30 Aug 2020 23:35:25 GMT</pubDate>
    <dc:creator>PowerBIUser1021</dc:creator>
    <dc:date>2020-08-30T23:35:25Z</dc:date>
    <item>
      <title>How can you Normalise Measure Values (filtered by Column Value)?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1331088#M23569</link>
      <description>&lt;P&gt;Hello Power BI Community!&amp;nbsp;‌‌&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is there a way to normalise Measure values (filtered by a column value)?&amp;nbsp;&lt;BR /&gt;For example, to do this I think I need min and max values of my measure. Below you can see the measure in a matrix table and find these values when they are filtered by a location (column value)...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;5.3%&lt;BR /&gt;6.3%&lt;BR /&gt;11.2%&lt;BR /&gt;12.6%&lt;BR /&gt;10.3%&lt;BR /&gt;12.8%&lt;BR /&gt;9.8%&lt;BR /&gt;5.7%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But can I use DAX to show the min and max values of the above to show as per the below?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Max&lt;/P&gt;&lt;P&gt;5.3% 12.8%&lt;BR /&gt;6.3% 12.8%&lt;BR /&gt;11.2% 12.8%&lt;BR /&gt;12.6% 12.8%&lt;BR /&gt;10.3% 12.8%&lt;BR /&gt;12.8% 12.8%&lt;BR /&gt;9.8% 12.8%&lt;BR /&gt;5.7% 12.8%&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2020 07:00:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1331088#M23569</guid>
      <dc:creator>PowerBIUser1021</dc:creator>
      <dc:date>2020-08-28T07:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: How can you Normalise Measure Values (filtered by Column Value)?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1331225#M23570</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="255701" data-lia-user-login="PowerBIUser1021" class="lia-mention lia-mention-user"&gt;PowerBIUser1021&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a measure for MAX column&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;= Calculate(Max(Table[your value column]), removefilter(Table[your value column]))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try above, if in your table you have multiple fileds then you probably would need to adjust the removefilter part in the dax.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if above is making sense&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2020 07:58:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1331225#M23570</guid>
      <dc:creator>mhossain</dc:creator>
      <dc:date>2020-08-28T07:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: How can you Normalise Measure Values (filtered by Column Value)?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1331485#M23576</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="255701" data-lia-user-login="PowerBIUser1021" class="lia-mention lia-mention-user"&gt;PowerBIUser1021&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;Try measures like&lt;/P&gt;
&lt;P&gt;Max&lt;/P&gt;
&lt;P&gt;calculate(max(Table[Value]) , all(Table))&lt;/P&gt;
&lt;P&gt;calculate(max(Table[Value]) , allselected(Table))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Min&lt;/P&gt;
&lt;P&gt;calculate(Min(Table[Value]) , all(Table))&lt;/P&gt;
&lt;P&gt;calculate(Min(Table[Value]) , allselected(Table))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;refer&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/managing-all-functions-in-dax-all-allselected-allnoblankrow-allexcept/" target="_blank"&gt;https://www.sqlbi.com/articles/managing-all-functions-in-dax-all-allselected-allnoblankrow-allexcept/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.linkedin.com/pulse/five-recent-power-bi-functions-you-should-use-more-often-amit-chandak" target="_blank"&gt;https://www.linkedin.com/pulse/five-recent-power-bi-functions-you-should-use-more-often-amit-chandak&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2020 09:22:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1331485#M23576</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-08-28T09:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: How can you Normalise Measure Values (filtered by Column Value)?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1331915#M23590</link>
      <description>Please read about ALLSELECTED. This is the function to use but it's tricky.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.sqlbi.com/articles/the-definitive-guide-to-allselected/" target="_blank"&gt;https://www.sqlbi.com/articles/the-definitive-guide-to-allselected/&lt;/A&gt;</description>
      <pubDate>Fri, 28 Aug 2020 11:40:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1331915#M23590</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-28T11:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: How can you Normalise Measure Values (filtered by Column Value)?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1334465#M23723</link>
      <description>&lt;P&gt;Thank you! I was able to use one of the formulas from this article.&lt;BR /&gt;&lt;BR /&gt;MAXX(ALLSELECTED(column filter), [Measure]) and the same for min. Works perfectly!&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2020 23:35:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-you-Normalise-Measure-Values-filtered-by-Column-Value/m-p/1334465#M23723</guid>
      <dc:creator>PowerBIUser1021</dc:creator>
      <dc:date>2020-08-30T23:35:25Z</dc:date>
    </item>
  </channel>
</rss>

