<?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: Minif function that compares the date of a row to the date of all other rows in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3045736#M104666</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="505096" data-lia-user-login="claudedubois" class="lia-mention lia-mention-user"&gt;claudedubois&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Coffee 10-Dec-22 should be 9?&lt;/P&gt;</description>
    <pubDate>Thu, 26 Jan 2023 17:19:25 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2023-01-26T17:19:25Z</dc:date>
    <item>
      <title>Minif function that compares the date of a row to the date of all other rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3045682#M104662</link>
      <description>&lt;P&gt;Hey everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to populate the right hand column below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It calculates the minimum quantity purchased in the last twelve months from the date of every row.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In excel, the function would be: minif (quantity column, description of all rows = description of current row, date of every row &amp;lt;= date of current row, date of every row &amp;gt;= (date of current row -365)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Struggling to translate the function to PBI? I guess it's shouldn't be a measure as every row has a separate value? Should it be a new column?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated! thank you.&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>Thu, 26 Jan 2023 16:58:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3045682#M104662</guid>
      <dc:creator>claudedubois</dc:creator>
      <dc:date>2023-01-26T16:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Minif function that compares the date of a row to the date of all other rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3045736#M104666</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="505096" data-lia-user-login="claudedubois" class="lia-mention lia-mention-user"&gt;claudedubois&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Coffee 10-Dec-22 should be 9?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 17:19:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3045736#M104666</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-01-26T17:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Minif function that compares the date of a row to the date of all other rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3045808#M104669</link>
      <description>&lt;P&gt;Yes sir my bad&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 17:43:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3045808#M104669</guid>
      <dc:creator>claudedubois</dc:creator>
      <dc:date>2023-01-26T17:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Minif function that compares the date of a row to the date of all other rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3045858#M104670</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="505096" data-lia-user-login="claudedubois" class="lia-mention lia-mention-user"&gt;claudedubois&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Following is a calculated column&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Min QTY Last 12 Months =&lt;BR /&gt;MINX (&lt;BR /&gt;FILTER (&lt;BR /&gt;CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[Description] ) ),&lt;BR /&gt;'Table'[Date] &amp;lt;= EARLIER ( 'Table'[Date] )&lt;BR /&gt;&amp;amp;&amp;amp; 'Table'[Date]&lt;BR /&gt;&amp;gt; EARLIER ( 'Table'[Date] ) - 365&lt;BR /&gt;),&lt;BR /&gt;'Table'[Quantity]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 18:11:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3045858#M104670</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-01-26T18:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: Minif function that compares the date of a row to the date of all other rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3049618#M104992</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;This is super super helpful! Thanks a lot for the help, saved me 1 day of useless work trying to figure this out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have another function that is similar but a bit more complex? Can I pls ask for it?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 06:42:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3049618#M104992</guid>
      <dc:creator>claudedubois</dc:creator>
      <dc:date>2023-01-30T06:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: Minif function that compares the date of a row to the date of all other rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3049723#M105001</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="505096" data-lia-user-login="claudedubois" class="lia-mention lia-mention-user"&gt;claudedubois&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Yes, please go ahead.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 07:39:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minif-function-that-compares-the-date-of-a-row-to-the-date-of/m-p/3049723#M105001</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-01-30T07:39:07Z</dc:date>
    </item>
  </channel>
</rss>

