<?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: Highest value formula in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582581#M74151</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting the following error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jun 2022 09:03:48 GMT</pubDate>
    <dc:creator>georgec96</dc:creator>
    <dc:date>2022-06-16T09:03:48Z</dc:date>
    <item>
      <title>Highest value formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582392#M74130</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've got the following dataset. I'm trying to find a formula that would help me keep the oldest PO Age value but a distinct value in the can_clear_backorders column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As an example the first 2 PO Numbers serve the same purpose however i would like to show only the oldest one (based on PO Age column).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help much appreciated.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 07:59:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582392#M74130</guid>
      <dc:creator>georgec96</dc:creator>
      <dc:date>2022-06-16T07:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Highest value formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582490#M74140</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="357242" data-lia-user-login="georgec96" class="lia-mention lia-mention-user"&gt;georgec96&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Max PO Age =
CALCULATE (
    MAX ( TableName[PO Age] ),
    ALLEXCEPT ( TableName, TableName[Desctription] )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 16 Jun 2022 08:31:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582490#M74140</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-16T08:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Highest value formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582536#M74146</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea how can i make the table visual not to duplicate the values?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's still showing the same as before after applying formula you provided.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 08:45:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582536#M74146</guid>
      <dc:creator>georgec96</dc:creator>
      <dc:date>2022-06-16T08:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Highest value formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582565#M74148</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="357242" data-lia-user-login="georgec96" class="lia-mention lia-mention-user"&gt;georgec96&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Max PO Age =
VAR CurrentPOAge =
    MAX ( TableName[PO Age] )
VAR MaxPOAge =
    CALCULATE (
        MAX ( TableName[PO Age] ),
        ALLEXCEPT ( TableName, TableName[Desctription] )
    )
RETURN
    IF ( CurrentPOAge = MaxPOAge, MaxPOAge )&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 16 Jun 2022 08:57:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582565#M74148</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-16T08:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Highest value formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582581#M74151</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting the following error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 09:03:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582581#M74151</guid>
      <dc:creator>georgec96</dc:creator>
      <dc:date>2022-06-16T09:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Highest value formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582592#M74152</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="357242" data-lia-user-login="georgec96" class="lia-mention lia-mention-user"&gt;georgec96&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;the last Table should be&amp;nbsp; 'Table'&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 09:07:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582592#M74152</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-16T09:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Highest value formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582739#M74157</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;, sorry to be a pain but this is not giving me the expected result as you can see.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way I can create maybe a new table that would give me distinct values in the column Description but keep the highest value in the PO Age column?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 09:49:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582739#M74157</guid>
      <dc:creator>georgec96</dc:creator>
      <dc:date>2022-06-16T09:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Highest value formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582745#M74159</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="357242" data-lia-user-login="georgec96" class="lia-mention lia-mention-user"&gt;georgec96&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please create it as a measure (New measure) not a calculated column&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 09:50:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582745#M74159</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-16T09:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Highest value formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582769#M74163</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Perfect! Thanks alot that worked!&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 09:56:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-value-formula/m-p/2582769#M74163</guid>
      <dc:creator>georgec96</dc:creator>
      <dc:date>2022-06-16T09:56:23Z</dc:date>
    </item>
  </channel>
</rss>

