<?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: Dax to exclude min value from power bi report in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4663410#M178582</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1232747" data-lia-user-login="Learnpbifab" class="lia-mention lia-mention-user"&gt;Learnpbifab&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;May i know has your issue been resolved? If the response provided by the&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="827982" data-lia-user-login="Hakuna_matata" class="lia-mention lia-mention-user"&gt;Hakuna_matata&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="645372" data-lia-user-login="techies" class="lia-mention lia-mention-user"&gt;techies&lt;/a&gt;&amp;nbsp;addressed your query, could you please confirm? It helps us ensure that the solutions provided are effective and beneficial for everyone.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If yes, kindly accept the useful reply as a solution and give us Kudos. It would be appreciated.&lt;/P&gt;
&lt;P&gt;Thank you for your understanding!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Apr 2025 14:49:31 GMT</pubDate>
    <dc:creator>v-kpoloju-msft</dc:creator>
    <dc:date>2025-04-22T14:49:31Z</dc:date>
    <item>
      <title>Dax to exclude min value from power bi report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4611119#M176500</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one report where I am showing value as processnum and processname.and i am trying to check all processnum under name excluding min value.&lt;/P&gt;&lt;P&gt;Dax:&lt;/P&gt;&lt;P&gt;Min=&lt;/P&gt;&lt;P&gt;Var a=min(table(processnum)&lt;/P&gt;&lt;P&gt;Return processnum &amp;gt; a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting error when tried for above. Can anyone suggest&lt;/P&gt;</description>
      <pubDate>Sat, 15 Mar 2025 02:46:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4611119#M176500</guid>
      <dc:creator>Learnpbifab</dc:creator>
      <dc:date>2025-03-15T02:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to exclude min value from power bi report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4611256#M176509</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&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;LI-CODE lang="markup"&gt;expected result measure: = 
VAR _processnumber =
    SUM ( data[process_number] )
VAR _min =
    MINX ( ALL ( data ), data[process_number] )
RETURN
    IF (
        _processnumber &amp;gt; _min
            &amp;amp;&amp;amp; HASONEVALUE ( data[process_name] ),
        _processnumber
    )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Mar 2025 08:58:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4611256#M176509</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2025-03-15T08:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to exclude min value from power bi report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4611259#M176510</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1232747" data-lia-user-login="Learnpbifab" class="lia-mention lia-mention-user"&gt;Learnpbifab&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;The way you have applied Min&amp;nbsp;will return the minimum processnum for the entire table, not for each specific processname.&lt;BR /&gt;Try the below measure:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Min_Excluded =&lt;BR /&gt;VAR MinValue = CALCULATE(MIN(Table[processnum]), ALLEXCEPT(Table, Table[processname]))&lt;BR /&gt;RETURN IF(Table[processnum] &amp;gt; MinValue, Table[processnum], BLANK())&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hope it helps!&lt;BR /&gt;&lt;SPAN&gt;If this solved your problem, please accept it as a solution!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Mar 2025 09:00:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4611259#M176510</guid>
      <dc:creator>Hakuna_matata</dc:creator>
      <dc:date>2025-03-15T09:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to exclude min value from power bi report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4611542#M176514</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1232747" data-lia-user-login="Learnpbifab" class="lia-mention lia-mention-user"&gt;Learnpbifab&lt;/a&gt;&amp;nbsp;please try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ExcludeMinProcessNum = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; MinValue = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;('Sheet6'[processnum]), &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALLEXCEPT&lt;/SPAN&gt;&lt;SPAN&gt;('Sheet6', 'Sheet6'[processname])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;('Sheet6'[processnum]) &amp;gt; MinValue, &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;('Sheet6'[processnum]), &lt;/SPAN&gt;&lt;SPAN&gt;BLANK&lt;/SPAN&gt;&lt;SPAN&gt;() )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 15 Mar 2025 19:19:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4611542#M176514</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2025-03-15T19:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to exclude min value from power bi report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4612119#M176524</link>
      <description>&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1232747" data-lia-user-login="Learnpbifab" class="lia-mention lia-mention-user"&gt;Learnpbifab&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;If these also don't help, please share more detailed information and description to help us clarify your scenario to test.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;&lt;A href="http://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Xiaoxin Sheng&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 02:45:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4612119#M176524</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-17T02:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to exclude min value from power bi report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4619348#M176785</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1232747" data-lia-user-login="Learnpbifab" class="lia-mention lia-mention-user"&gt;Learnpbifab&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Any update on this? Did these suggestion helps?&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Xiaoxin Sheng&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2025 07:20:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4619348#M176785</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-21T07:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to exclude min value from power bi report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4663410#M178582</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1232747" data-lia-user-login="Learnpbifab" class="lia-mention lia-mention-user"&gt;Learnpbifab&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;May i know has your issue been resolved? If the response provided by the&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="827982" data-lia-user-login="Hakuna_matata" class="lia-mention lia-mention-user"&gt;Hakuna_matata&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="645372" data-lia-user-login="techies" class="lia-mention lia-mention-user"&gt;techies&lt;/a&gt;&amp;nbsp;addressed your query, could you please confirm? It helps us ensure that the solutions provided are effective and beneficial for everyone.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If yes, kindly accept the useful reply as a solution and give us Kudos. It would be appreciated.&lt;/P&gt;
&lt;P&gt;Thank you for your understanding!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 14:49:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4663410#M178582</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-04-22T14:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to exclude min value from power bi report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4670046#M178872</link>
      <description>&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1232747" data-lia-user-login="Learnpbifab" class="lia-mention lia-mention-user"&gt;Learnpbifab&lt;/a&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;&lt;BR /&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 06:48:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4670046#M178872</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-04-28T06:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to exclude min value from power bi report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4675407#M179054</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1232747" data-lia-user-login="Learnpbifab" class="lia-mention lia-mention-user"&gt;Learnpbifab&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 05:07:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-exclude-min-value-from-power-bi-report/m-p/4675407#M179054</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-05-01T05:07:28Z</dc:date>
    </item>
  </channel>
</rss>

