<?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: Dynamically Calculating minimum value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3181206#M115010</link>
    <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Image 1 is when there is no filter on date, LastSSCandInteraction is the measure Ihad at the start, measure is the the DAX you suggested. Image 2 is when I have a filter on relative date which does not affect any of the interactions on the application&lt;/P&gt;</description>
    <pubDate>Tue, 11 Apr 2023 07:18:48 GMT</pubDate>
    <dc:creator>SBethell</dc:creator>
    <dc:date>2023-04-11T07:18:48Z</dc:date>
    <item>
      <title>Dynamically Calculating minimum value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3168922#M114146</link>
      <description>&lt;P&gt;I'm trying to visualise the movement of applications thorugh our system, using a dataset that produces a record for every interaction that the application has had with our system, but I only want to be counting the most recent interaction.&lt;/P&gt;&lt;P&gt;Column 4 in the image attached is what I need to get to, showing the smallest number grouped by application, where the Rel Date is at least 6, and at most 100.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 09:24:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3168922#M114146</guid>
      <dc:creator>SBethell</dc:creator>
      <dc:date>2023-04-03T09:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically Calculating minimum value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3169151#M114164</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="539739" data-lia-user-login="SBethell" class="lia-mention lia-mention-user"&gt;SBethell&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please clarify further&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 11:22:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3169151#M114164</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-03T11:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically Calculating minimum value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3169212#M114171</link>
      <description>&lt;P&gt;Not sure what exactly you're asking for but in the image above I need to be able to select only the most recent interaction each application has, in the example above I only want to be&amp;nbsp; counting record 3 for application A, and record 2 for application B. I'm currently using:&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;(Table[LatestRecord]),&lt;/SPAN&gt;&lt;SPAN&gt;ALLEXCEPT&lt;/SPAN&gt;&lt;SPAN&gt;(Table,Table[AppID],Table[Rel Date]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;This works when there are no filters on relative date, however when I use a slicer to change the available relatives dates it stops working, and shows each record as the value. If I take out the Table[Rel Date] from the function, it always shows the final record regardless of the relative date. &lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 03 Apr 2023 11:46:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3169212#M114171</guid>
      <dc:creator>SBethell</dc:creator>
      <dc:date>2023-04-03T11:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically Calculating minimum value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3169593#M114204</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="539739" data-lia-user-login="SBethell" class="lia-mention lia-mention-user"&gt;SBethell&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try the following measure&amp;nbsp;&lt;/P&gt;
&lt;P&gt;=&lt;BR /&gt;CALCULATE (&lt;BR /&gt;MIN ( Table[LatestRecord] ),&lt;BR /&gt;ALLSELECTED ( 'Table' ),&lt;BR /&gt;VALUES ( 'Table'[AppID] )&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 14:04:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3169593#M114204</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-03T14:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically Calculating minimum value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3171312#M114316</link>
      <description>&lt;P&gt;Just tried it and I'm still getting the same issue where it works for when I have nothing on my slicer but as soon as I adjust the slicer, even if it doesn't impact the application I'm using as a test it shows each record as the minimum again.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 09:47:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3171312#M114316</guid>
      <dc:creator>SBethell</dc:creator>
      <dc:date>2023-04-04T09:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically Calculating minimum value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3171316#M114318</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="539739" data-lia-user-login="SBethell" class="lia-mention lia-mention-user"&gt;SBethell&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Would you please provide some screeshots to clarify your point?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 09:51:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3171316#M114318</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-04T09:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically Calculating minimum value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3181206#M115010</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Image 1 is when there is no filter on date, LastSSCandInteraction is the measure Ihad at the start, measure is the the DAX you suggested. Image 2 is when I have a filter on relative date which does not affect any of the interactions on the application&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 07:18:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3181206#M115010</guid>
      <dc:creator>SBethell</dc:creator>
      <dc:date>2023-04-11T07:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically Calculating minimum value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3181308#M115016</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="539739" data-lia-user-login="SBethell" class="lia-mention lia-mention-user"&gt;SBethell&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Not sure if I fully understand, However, please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;=
CALCULATE (
    MIN ( Table[LatestRecord] ),
    ALL ( 'Table' ),
    VALUES ( 'Table'[AppID] )
)&lt;/LI-CODE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;=
CALCULATE ( 
    MIN ( Table[LatestRecord] ), 
    ALLEXCEPT ( 'Table', 'Table'[AppID] ) 
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 11 Apr 2023 08:00:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3181308#M115016</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-11T08:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically Calculating minimum value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3183385#M115156</link>
      <description>&lt;P&gt;Unfortunately still no dice, but I realised I didn't share the formula I've worked out in excel. MINIFS($B$2:$B$21,$C$2:$C$21,"&amp;gt;="&amp;amp;$I$2,$C$2:$C$21,"&amp;lt;="&amp;amp;$J$2,$A$2:$A$21,A2)&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 07:15:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamically-Calculating-minimum-value/m-p/3183385#M115156</guid>
      <dc:creator>SBethell</dc:creator>
      <dc:date>2023-04-12T07:15:24Z</dc:date>
    </item>
  </channel>
</rss>

