<?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 Formula not giving correct values. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1786596#M37555</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , if one of them is the measure, it will not work. You can not measure in a new column. You have to create a new measure only &lt;/P&gt;</description>
    <pubDate>Thu, 15 Apr 2021 10:04:25 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2021-04-15T10:04:25Z</dc:date>
    <item>
      <title>Dax Formula not giving correct values.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1786502#M37552</link>
      <description>&lt;P&gt;Hi Team&lt;/P&gt;&lt;P&gt;i need help with the below, so basically what im trying to do is i'm calculating SLA Condition using the below script which is a Column&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SLA Condition = IF([Total SLA]&amp;lt;=Activities[CCBA Target],1,0)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;im assuming why its giving me wrong values is because im comparing a Measure with a column and all it gives me is 1 which is not correct. ive attached pictures of how ths scenarior looks.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;let me know if you need more information&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;Manwatha Immanuel&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 09:25:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1786502#M37552</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-15T09:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Formula not giving correct values.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1786596#M37555</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , if one of them is the measure, it will not work. You can not measure in a new column. You have to create a new measure only &lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 10:04:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1786596#M37555</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-04-15T10:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Formula not giving correct values.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1786616#M37556</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp; thank you for your response, do you pehaps have simple method i can convert the column i have and make it a measure without changing data in it?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 10:11:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1786616#M37556</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-15T10:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Formula not giving correct values.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1786628#M37557</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try measure like&lt;/P&gt;
&lt;P&gt;SLA Condition = IF([Total SLA]&amp;lt;=Sum(Activities[CCBA Target]),1,0)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SLA Condition = IF([Total SLA]&amp;lt;=max(Activities[CCBA Target]),1,0)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make sure you disply this measure with line level data&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 10:13:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1786628#M37557</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-04-15T10:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Formula not giving correct values.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1787075#M37573</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp; your surgestion worked thanks alot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ive used this formula&amp;nbsp;&lt;/P&gt;&lt;P&gt;SLA Condition = IF([Total SLA]&amp;lt;=Sum(Activities[CCBA Target]),1,0)&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 13:41:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Formula-not-giving-correct-values/m-p/1787075#M37573</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-15T13:41:09Z</dc:date>
    </item>
  </channel>
</rss>

