<?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: MIN DATE FUNCTION in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MIN-DATE-FUNCTION/m-p/2474592#M67518</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="347737" data-lia-user-login="SIBI1998" class="lia-mention lia-mention-user"&gt;SIBI1998&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure like below and add it to visual filter set value = 1.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;measure =
IF (
    SELECTEDVALUE ( [FROM_DATE] )
        = MINX ( ALLEXCEPT ( 'table', [mx apbdr] ), [FROM_DATE] ),
    1,
    0
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jay&lt;/P&gt;</description>
    <pubDate>Mon, 25 Apr 2022 10:06:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-04-25T10:06:10Z</dc:date>
    <item>
      <title>MIN DATE FUNCTION</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MIN-DATE-FUNCTION/m-p/2464872#M66945</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Here I have Stuck with MIN DATE function from FROMM_DATE ; from mx APBDR we have 3 Same Values of NSP10 and 3 Different Values in FROM_DATE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I have need only 11-May-20 from that which is MINIMUM of Nsp10.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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>Wed, 20 Apr 2022 05:52:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MIN-DATE-FUNCTION/m-p/2464872#M66945</guid>
      <dc:creator>SIBI1998</dc:creator>
      <dc:date>2022-04-20T05:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: MIN DATE FUNCTION</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MIN-DATE-FUNCTION/m-p/2464893#M66946</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="347737" data-lia-user-login="SIBI1998" class="lia-mention lia-mention-user"&gt;SIBI1998&lt;/a&gt; ,please try measure like &lt;/P&gt;
&lt;P&gt;minx(filter(allselected(Table), Table[mx APBDR] = max(Table[mx APBDR]) ), Table[FROM_DATE])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or min(Table[FROM_DATE])&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2022 06:05:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MIN-DATE-FUNCTION/m-p/2464893#M66946</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-04-20T06:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: MIN DATE FUNCTION</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MIN-DATE-FUNCTION/m-p/2464899#M66948</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="347737" data-lia-user-login="SIBI1998" class="lia-mention lia-mention-user"&gt;SIBI1998&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;place this measure in the filter pane of the table visual and select "Is" and inset the value 1 then apply&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Filter Measure =
VAR CurrentDate =
    MAX ( Table[FROM DATE] )
VAR MinDate =
    MINX (
        CALCULATETABLE ( ALL ( Table ), ALLEXCEPT ( Table, Table[mx APBDR] ) ),
        Table[FROM DATE]
    )
RETURN
    CurrentDate = MinDate&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 20 Apr 2022 06:10:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MIN-DATE-FUNCTION/m-p/2464899#M66948</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-20T06:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: MIN DATE FUNCTION</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MIN-DATE-FUNCTION/m-p/2474592#M67518</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="347737" data-lia-user-login="SIBI1998" class="lia-mention lia-mention-user"&gt;SIBI1998&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure like below and add it to visual filter set value = 1.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;measure =
IF (
    SELECTEDVALUE ( [FROM_DATE] )
        = MINX ( ALLEXCEPT ( 'table', [mx apbdr] ), [FROM_DATE] ),
    1,
    0
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jay&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 10:06:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MIN-DATE-FUNCTION/m-p/2474592#M67518</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-25T10:06:10Z</dc:date>
    </item>
  </channel>
</rss>

