<?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: Minimum Value of a column based on other column vlaue in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minimum-Value-of-a-column-based-on-other-column-vlaue/m-p/4291646#M170301</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;I tried to create a sample pbix file like below.&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;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Nov 2024 17:27:13 GMT</pubDate>
    <dc:creator>Jihwan_Kim</dc:creator>
    <dc:date>2024-11-19T17:27:13Z</dc:date>
    <item>
      <title>Minimum Value of a column based on other column vlaue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minimum-Value-of-a-column-based-on-other-column-vlaue/m-p/4291239#M170293</link>
      <description>&lt;P&gt;Hi there&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new to PowerBI so please excuse the simplicity of my question&lt;/P&gt;&lt;P&gt;I have returned data I need to display in to the PowerBI report and can do simple Transformation routines.&lt;/P&gt;&lt;P&gt;However I have too much data and now want to only show the minimum Value of column B based on the value in column A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Simple data set&lt;/P&gt;&lt;P&gt;Column A Row 1 = W-001 Column B = 20&lt;/P&gt;&lt;P&gt;Column A Row 2 = W-001 Column B = 30&lt;/P&gt;&lt;P&gt;Column A Row 3 = W-001 Column B = 40&lt;/P&gt;&lt;P&gt;Column A Row 4 = X-002 Column B = 80&lt;/P&gt;&lt;P&gt;Column A Row 5 = X-002 Column B = 90&lt;/P&gt;&lt;P&gt;Column A Row 6 = X-002 Column B = 100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to filter this data so that I only see&amp;nbsp;&lt;/P&gt;&lt;P&gt;Column A Row 1 = W-001 Minimum Value Column B = 20&lt;/P&gt;&lt;P&gt;Column A Row 2 = X-002 Minimum Value Column B = 80&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciate&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards Darrell&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 14:17:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minimum-Value-of-a-column-based-on-other-column-vlaue/m-p/4291239#M170293</guid>
      <dc:creator>Darrellfone</dc:creator>
      <dc:date>2024-11-19T14:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum Value of a column based on other column vlaue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minimum-Value-of-a-column-based-on-other-column-vlaue/m-p/4291646#M170301</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;I tried to create a sample pbix file like below.&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 17:27:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minimum-Value-of-a-column-based-on-other-column-vlaue/m-p/4291646#M170301</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-11-19T17:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum Value of a column based on other column vlaue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minimum-Value-of-a-column-based-on-other-column-vlaue/m-p/4292106#M170312</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="853112" data-lia-user-login="Darrellfone" class="lia-mention lia-mention-user"&gt;Darrellfone&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need to create measure, you can use the following expression:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = CALCULATE(MIN('Data'[B]),ALLEXCEPT('Data','Data'[A]))&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope it helps!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Community Support Team_ Scott Chang&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 01:39:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minimum-Value-of-a-column-based-on-other-column-vlaue/m-p/4292106#M170312</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-20T01:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Minimum Value of a column based on other column vlaue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minimum-Value-of-a-column-based-on-other-column-vlaue/m-p/4303972#M170900</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have managed to solve the issue now TVM &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 10:23:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Minimum-Value-of-a-column-based-on-other-column-vlaue/m-p/4303972#M170900</guid>
      <dc:creator>Darrellfone</dc:creator>
      <dc:date>2024-11-27T10:23:18Z</dc:date>
    </item>
  </channel>
</rss>

