<?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: Condition column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Condition-column/m-p/996107#M12492</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="11211" data-lia-user-login="ibarrau" class="lia-mention lia-mention-user"&gt;ibarrau&lt;/a&gt;,&amp;nbsp;wanted to bring your attention to the fact that:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IF(
    AND ( Condition1, Condition2 ),
    TRUE(),
    FALSE()
)&lt;/LI-CODE&gt;
&lt;P&gt;is exactly the same as&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;AND ( Condition1, Condition2 )&lt;/LI-CODE&gt;
&lt;P&gt;The second IF is exactly the same.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Therefore there's no point doing what you've suggested. Worse, it's more obscure and harder to understand at a glance than the plain and simple expression on its own.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;</description>
    <pubDate>Fri, 27 Mar 2020 21:24:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-03-27T21:24:09Z</dc:date>
    <item>
      <title>Condition column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Condition-column/m-p/994513#M12429</link>
      <description>&lt;P&gt;Dear All,&amp;nbsp; I have a column where i have a list of countries,&amp;nbsp; another column for date and then the values etc.&amp;nbsp; But for some countries i do not want to show the data after certain month and date.&amp;nbsp; for example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;before 2019&amp;nbsp; all country data to be shown,&amp;nbsp; &amp;nbsp;total countries&amp;nbsp; = 70&lt;/P&gt;&lt;P&gt;after June 2019 show all data except one country , now new total countries&amp;nbsp; = 69&lt;/P&gt;&lt;P&gt;and again after&amp;nbsp; Dec 2019 do not show one more country , now the final country list = 68&lt;/P&gt;&lt;P&gt;how do i do this, tried conditional column but it only allows me one condition.&amp;nbsp; i need to specify, if month year &amp;gt;= 2019 then show all country, and if month year june 2019 &amp;gt;= june then show all but one, etc.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 04:21:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Condition-column/m-p/994513#M12429</guid>
      <dc:creator>sure19</dc:creator>
      <dc:date>2020-03-27T04:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Condition column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Condition-column/m-p/995253#M12451</link>
      <description>&lt;P&gt;Hi there two ways to ask for more than 1 condition in DAX. You can try both:&lt;/P&gt;
&lt;P&gt;First&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IF(
    AND ( Condition1, Condition2 ),
    TRUE(),
    FALSE()
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IF(
    Condition1 &amp;amp;&amp;amp; Condition2,
    TRUE(),
    FALSE()
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Hope this Helps,&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 12:00:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Condition-column/m-p/995253#M12451</guid>
      <dc:creator>ibarrau</dc:creator>
      <dc:date>2020-03-27T12:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: Condition column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Condition-column/m-p/996102#M12491</link>
      <description>&lt;P&gt;Here's one way you can restrict measures to certain dates for each individual country without too much work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 21:20:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Condition-column/m-p/996102#M12491</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-27T21:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Condition column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Condition-column/m-p/996107#M12492</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="11211" data-lia-user-login="ibarrau" class="lia-mention lia-mention-user"&gt;ibarrau&lt;/a&gt;,&amp;nbsp;wanted to bring your attention to the fact that:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IF(
    AND ( Condition1, Condition2 ),
    TRUE(),
    FALSE()
)&lt;/LI-CODE&gt;
&lt;P&gt;is exactly the same as&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;AND ( Condition1, Condition2 )&lt;/LI-CODE&gt;
&lt;P&gt;The second IF is exactly the same.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Therefore there's no point doing what you've suggested. Worse, it's more obscure and harder to understand at a glance than the plain and simple expression on its own.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 21:24:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Condition-column/m-p/996107#M12492</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-27T21:24:09Z</dc:date>
    </item>
  </channel>
</rss>

