<?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 Creating Dax Success or Failure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Dax-Success-or-Failure/m-p/2875347#M92911</link>
    <description>&lt;P&gt;&lt;img /&gt;&amp;nbsp; &amp;nbsp;I have a column of Collected at club Percentage. I have different % here. If club has atleast collected &lt;STRONG&gt;4&lt;/STRONG&gt; or more than &lt;STRONG&gt;4%&lt;/STRONG&gt; it's success. And if its less than &lt;STRONG&gt;4%&lt;/STRONG&gt; , its failed. How do I create a dax for this. Please help&lt;/P&gt;</description>
    <pubDate>Mon, 31 Oct 2022 19:44:25 GMT</pubDate>
    <dc:creator>Samiks95</dc:creator>
    <dc:date>2022-10-31T19:44:25Z</dc:date>
    <item>
      <title>Creating Dax Success or Failure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Dax-Success-or-Failure/m-p/2875347#M92911</link>
      <description>&lt;P&gt;&lt;img /&gt;&amp;nbsp; &amp;nbsp;I have a column of Collected at club Percentage. I have different % here. If club has atleast collected &lt;STRONG&gt;4&lt;/STRONG&gt; or more than &lt;STRONG&gt;4%&lt;/STRONG&gt; it's success. And if its less than &lt;STRONG&gt;4%&lt;/STRONG&gt; , its failed. How do I create a dax for this. Please help&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 19:44:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Dax-Success-or-Failure/m-p/2875347#M92911</guid>
      <dc:creator>Samiks95</dc:creator>
      <dc:date>2022-10-31T19:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dax Success or Failure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Dax-Success-or-Failure/m-p/2875462#M92913</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457654" data-lia-user-login="Samiks95" class="lia-mention lia-mention-user"&gt;Samiks95&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Please try this measure. It will return your expected results depending how it is used.&lt;/P&gt;&lt;PRE&gt;Club Grade = &lt;BR /&gt;VAR countGreaterThan4Per =&lt;BR /&gt;    COUNTROWS(&lt;BR /&gt;        FILTER(&lt;BR /&gt;            'Sample Data',&lt;BR /&gt;            'Sample Data'[Decimal Percentage] &amp;gt; 0.04&lt;BR /&gt;        )&lt;BR /&gt;    )&lt;BR /&gt;&lt;BR /&gt;RETURN&lt;BR /&gt;    IF(&lt;BR /&gt;        HASONEVALUE('Sample Data'[Club]),&lt;BR /&gt;        IF(&lt;BR /&gt;            countGreaterThan4Per &amp;gt;= 4,&lt;BR /&gt;            "Success",&lt;BR /&gt;            "Fail"&lt;BR /&gt;        )&lt;BR /&gt;    )&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Results in a table visual&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 20:54:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Dax-Success-or-Failure/m-p/2875462#M92913</guid>
      <dc:creator>besomebody20</dc:creator>
      <dc:date>2022-10-31T20:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dax Success or Failure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Dax-Success-or-Failure/m-p/2875471#M92914</link>
      <description>&lt;P&gt; Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457654" data-lia-user-login="Samiks95" class="lia-mention lia-mention-user"&gt;Samiks95&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;for new column:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Text = If( [Collected at Club Percentage]&amp;lt; 0.04,"Failed","Success"&lt;/LI-CODE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and for measure :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Text = If( selectedvalue(table[Collected at Club Percentage])&amp;lt; 0.04,"Failed","Success"&lt;/LI-CODE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;if you find this helpful please accept as solution and a kudos is appreciated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 20:57:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Dax-Success-or-Failure/m-p/2875471#M92914</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-31T20:57:41Z</dc:date>
    </item>
  </channel>
</rss>

