<?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: Filter option to take Max range only in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1803082#M38037</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="264353" data-lia-user-login="wdx223_Daniel" class="lia-mention lia-mention-user"&gt;wdx223_Daniel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got value of all 1 as results instead.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 23 Apr 2021 16:09:02 GMT</pubDate>
    <dc:creator>JustinDoh1</dc:creator>
    <dc:date>2021-04-23T16:09:02Z</dc:date>
    <item>
      <title>Filter option to take Max range only</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1801381#M37989</link>
      <description>&lt;P&gt;I am trying to create Dax calculated measure where I originally have two ranges to bring in as condition.&lt;/P&gt;&lt;P&gt;I was able to create Dax calcuated measure with both Min and Max range, but I would like to only use Max.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an illustration:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I was able to use this DAX and it worked fine.&lt;/P&gt;&lt;P&gt;Measure =&lt;BR /&gt;&amp;nbsp; &amp;nbsp;CALCULATE(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; VALUES(Star[Value]),&lt;BR /&gt;&amp;nbsp; &amp;nbsp;FILTER(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Star,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Star[Min] &amp;lt;= Sum(Test[Test])&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; Star[Max] &amp;gt;= SUM(Test[Test])&lt;BR /&gt;&amp;nbsp; &amp;nbsp; )&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, I would like to only use one column (Max) instead of using two columns (with Min).&lt;/P&gt;&lt;P&gt;So, this is what I am trying to envision.&lt;/P&gt;&lt;P&gt;MeasureNEW =&lt;BR /&gt;&amp;nbsp; CALCULATE(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;VALUES(Star[Value]),&lt;BR /&gt;&amp;nbsp; FILTER(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Star,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Star[Max] &amp;gt;= MAX(Test[Test])&lt;BR /&gt;&amp;nbsp; &amp;nbsp;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I accomplish it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 00:15:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1801381#M37989</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2021-04-23T00:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Filter option to take Max range only</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1801504#M37990</link>
      <description>&lt;P&gt;&lt;SPAN&gt;MeasureNEW =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; CALCULATE(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MIN(Star[Value]),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; FILTER(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Star,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Star[Max] &amp;gt;= MAX(Test[Test])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 02:20:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1801504#M37990</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2021-04-23T02:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Filter option to take Max range only</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1802944#M38032</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="296339" data-lia-user-login="JustinDoh1" class="lia-mention lia-mention-user"&gt;JustinDoh1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is no such thing as "a calculated measure." There are measures or calculated columns/tables.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 14:28:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1802944#M38032</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-23T14:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Filter option to take Max range only</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1803082#M38037</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="264353" data-lia-user-login="wdx223_Daniel" class="lia-mention lia-mention-user"&gt;wdx223_Daniel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got value of all 1 as results instead.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 16:09:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1803082#M38037</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2021-04-23T16:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Filter option to take Max range only</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1803179#M38041</link>
      <description>&lt;P&gt;Thanks for correction. All new for me now &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 16:50:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-option-to-take-Max-range-only/m-p/1803179#M38041</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2021-04-23T16:50:47Z</dc:date>
    </item>
  </channel>
</rss>

