<?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: IF condition multiple in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/IF-condition-multiple/m-p/2081962#M47233</link>
    <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Try this formula, where the first condition makes you avoid considering blanks:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;IF(ISBLANK(Tabella[Med%]), BLANK(), IF( Tabella[Med%] &amp;lt; 1.15, "NOT", IF(Tabella[Med%] &amp;gt;= 1.15 || Tabella[Med%] &amp;lt; 1.20, "5 euro", IF(Tabella[Med%] &amp;gt; 1.20, "10 euro", BLANK()))))&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;It works?&lt;/DIV&gt;&lt;DIV&gt;B.&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 17 Sep 2021 07:19:32 GMT</pubDate>
    <dc:creator>BeaBF</dc:creator>
    <dc:date>2021-09-17T07:19:32Z</dc:date>
    <item>
      <title>IF condition multiple</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/IF-condition-multiple/m-p/2080552#M47198</link>
      <description>&lt;P&gt;Hello COmmunity,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to used IF with multiple condition but does't worked ...&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;AmountPrime = IF([Med%]&amp;gt;1.15,"5€", [Med%] &amp;gt;1.2,"20€")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I need MED% &amp;lt; 115% = NOT&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MED%&amp;gt;= 115% = 5€&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MED% &amp;gt;120% = 10€&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;It's possible ?&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 16 Sep 2021 14:07:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/IF-condition-multiple/m-p/2080552#M47198</guid>
      <dc:creator>Vanessa250919</dc:creator>
      <dc:date>2021-09-16T14:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: IF condition multiple</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/IF-condition-multiple/m-p/2080728#M47205</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;You need to create a concatenation of IF conditions, as follows:&lt;/FONT&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;IF(Table[MED] &amp;lt; 1.15, "NOT", IF(Table[MED] &amp;gt;= 1.15 || Table[MED] &amp;lt; 1.20, "5 euro", IF(Table[MED] &amp;gt; 1.20, "10 euro", BLANK())))&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;is that what you wanted?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;&lt;SPAN&gt;B.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 16 Sep 2021 15:33:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/IF-condition-multiple/m-p/2080728#M47205</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2021-09-16T15:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: IF condition multiple</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/IF-condition-multiple/m-p/2081021#M47209</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="202311" data-lia-user-login="BeaBF" class="lia-mention lia-mention-user"&gt;BeaBF&lt;/a&gt;&amp;nbsp;Yes it's that but I a big isssue if I make a formule with &amp;lt; it's not ok and &amp;gt; it's ok check my printscreen&lt;/P&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I don't know why ... it's same with SWITCH(TRUE&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Sep 2021 18:37:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/IF-condition-multiple/m-p/2081021#M47209</guid>
      <dc:creator>Vanessa250919</dc:creator>
      <dc:date>2021-09-16T18:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: IF condition multiple</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/IF-condition-multiple/m-p/2081962#M47233</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Try this formula, where the first condition makes you avoid considering blanks:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;IF(ISBLANK(Tabella[Med%]), BLANK(), IF( Tabella[Med%] &amp;lt; 1.15, "NOT", IF(Tabella[Med%] &amp;gt;= 1.15 || Tabella[Med%] &amp;lt; 1.20, "5 euro", IF(Tabella[Med%] &amp;gt; 1.20, "10 euro", BLANK()))))&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;It works?&lt;/DIV&gt;&lt;DIV&gt;B.&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 Sep 2021 07:19:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/IF-condition-multiple/m-p/2081962#M47233</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2021-09-17T07:19:32Z</dc:date>
    </item>
  </channel>
</rss>

