<?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 if statement has no / wrong total in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-if-statement-has-no-wrong-total/m-p/2919639#M95715</link>
    <description>&lt;P&gt;&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;&amp;nbsp;incredibly good support, thank you very much!&lt;/P&gt;</description>
    <pubDate>Mon, 21 Nov 2022 19:25:04 GMT</pubDate>
    <dc:creator>bedata1</dc:creator>
    <dc:date>2022-11-21T19:25:04Z</dc:date>
    <item>
      <title>DAX if statement has no / wrong total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-if-statement-has-no-wrong-total/m-p/2917226#M95559</link>
      <description>&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created an if DAX where the total is not displayed:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First I created the following DAX called "Effizienz":&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;Effizienz = &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;DIVIDE(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; SUM('Projektposten'[Quantity]),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; SUM('Projekt-Budgetposten'[Quantity])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Second I used this in another DAX calles "100%":&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;100% = if( and([Effizienz]&amp;lt;=1.1, [Effizienz]&amp;gt;0.8),1,0)&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Now I actually expect it to show me the totalization (see printscreen above).&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;Can someone help me how to get the total displayed?&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 20 Nov 2022 20:31:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-if-statement-has-no-wrong-total/m-p/2917226#M95559</guid>
      <dc:creator>bedata1</dc:creator>
      <dc:date>2022-11-20T20:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: DAX if statement has no / wrong total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-if-statement-has-no-wrong-total/m-p/2917277#M95561</link>
      <description>&lt;P&gt;the&amp;nbsp;&lt;SPAN&gt;totalization of what?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Nov 2022 22:09:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-if-statement-has-no-wrong-total/m-p/2917277#M95561</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-11-20T22:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: DAX if statement has no / wrong total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-if-statement-has-no-wrong-total/m-p/2917563#M95567</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="474790" data-lia-user-login="bedata1" class="lia-mention lia-mention-user"&gt;bedata1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can force additivity using&lt;/P&gt;
&lt;P&gt;100% =&lt;BR /&gt;SUMX (&lt;BR /&gt;VALUES ( 'Table'[No] ),&lt;BR /&gt;VAR Efficiency = [Effizienz]&lt;BR /&gt;RETURN&lt;BR /&gt;IF ( AND ( Efficiency &amp;lt;= 1.1, Efficiency &amp;gt; 0.8 ), 1, 0 )&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 04:00:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-if-statement-has-no-wrong-total/m-p/2917563#M95567</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-11-21T04:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: DAX if statement has no / wrong total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-if-statement-has-no-wrong-total/m-p/2919639#M95715</link>
      <description>&lt;P&gt;&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;&amp;nbsp;incredibly good support, thank you very much!&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 19:25:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-if-statement-has-no-wrong-total/m-p/2919639#M95715</guid>
      <dc:creator>bedata1</dc:creator>
      <dc:date>2022-11-21T19:25:04Z</dc:date>
    </item>
  </channel>
</rss>

