<?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: Calculate Custom Maximum Value Column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714031#M82564</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="429524" data-lia-user-login="ThisIsVS" class="lia-mention lia-mention-user"&gt;ThisIsVS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may also try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Amount Max =
VAR MaxAmount =
    MAXX ( ALLSELECTED ( TableName[Year] ), [Sum of Sales Amount] )
RETURN
    IF ( [Sum of Sales Amount] = MaxAmount, MaxAmount )&lt;/LI-CODE&gt;</description>
    <pubDate>Sat, 20 Aug 2022 14:55:31 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2022-08-20T14:55:31Z</dc:date>
    <item>
      <title>Calculate Custom Maximum Value Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714016#M82560</link>
      <description>&lt;P&gt;This might be easy.&lt;BR /&gt;Let's say I've the following Pivot Table.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;What would be the dax expression to create a measure named "Max" so that i would get the following.&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;i.e If Value in "Sum of Sales Amount" column equals Maximum Value of "Sum of Sales Amount" column, then the value itself, otherwise a blank.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Aug 2022 14:42:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714016#M82560</guid>
      <dc:creator>ThisIsVS</dc:creator>
      <dc:date>2022-08-20T14:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Custom Maximum Value Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714021#M82561</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="429524" data-lia-user-login="ThisIsVS" class="lia-mention lia-mention-user"&gt;ThisIsVS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is the Year column from the same table or a date table?&lt;/P&gt;</description>
      <pubDate>Sat, 20 Aug 2022 14:42:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714021#M82561</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-20T14:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Custom Maximum Value Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714022#M82562</link>
      <description>&lt;P&gt;Same table, Sir.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Aug 2022 14:43:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714022#M82562</guid>
      <dc:creator>ThisIsVS</dc:creator>
      <dc:date>2022-08-20T14:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Custom Maximum Value Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714026#M82563</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="429524" data-lia-user-login="ThisIsVS" class="lia-mention lia-mention-user"&gt;ThisIsVS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Amount Max =
CALCULATE (
    MAXX ( ALLSELECTED ( TableName[Year] ), [Sum of Sales Amount] ),
    KEEPFILTERS ( TableName[Year] )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 20 Aug 2022 14:49:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714026#M82563</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-20T14:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Custom Maximum Value Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714031#M82564</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="429524" data-lia-user-login="ThisIsVS" class="lia-mention lia-mention-user"&gt;ThisIsVS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may also try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Amount Max =
VAR MaxAmount =
    MAXX ( ALLSELECTED ( TableName[Year] ), [Sum of Sales Amount] )
RETURN
    IF ( [Sum of Sales Amount] = MaxAmount, MaxAmount )&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 20 Aug 2022 14:55:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714031#M82564</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-20T14:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Custom Maximum Value Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714039#M82566</link>
      <description>&lt;P&gt;It worked. Thankyou, Sir. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Aug 2022 15:05:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-Custom-Maximum-Value-Column/m-p/2714039#M82566</guid>
      <dc:creator>ThisIsVS</dc:creator>
      <dc:date>2022-08-20T15:05:39Z</dc:date>
    </item>
  </channel>
</rss>

