<?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 in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797252#M87935</link>
    <description>&lt;P&gt;Thanks for your reply,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i getting "Status 2" same as "Status" column for above formula&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Sep 2022 16:40:59 GMT</pubDate>
    <dc:creator>jimpatel</dc:creator>
    <dc:date>2022-09-26T16:40:59Z</dc:date>
    <item>
      <title>DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2787323#M87414</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for looking at my post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having 2 tables named as table 1 and table 2 but not related to each other.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What i am looking for DAX formula for "Table 1" column B as shown below, if any of the part number from column A in excel (which is table1&amp;nbsp; in power BI), match with column I in excel (which is table 2 in power bi) and if column J is True for any part number, then expected result should be true please.&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are some instance where column J will have both true and false for same part numbers and in that case True will be over ridden please.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea please&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot and this will be massive step forward for me as i got stuck in this one for ages&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 15:10:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2787323#M87414</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2022-09-22T15:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2787454#M87417</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="413988" data-lia-user-login="jimpatel" class="lia-mention lia-mention-user"&gt;jimpatel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is the true/false column from table 2 a text or boolean data type?&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Trur/False =
IF (
    ISEMPTY (
        FILTER (
            Table2,
            Table2[Part Number] = Table1[Part Number]
                &amp;amp;&amp;amp; Table2[True/False] = "TRUE"
        )
    ),
    "FALSE",
    "TRUE"
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 22 Sep 2022 16:21:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2787454#M87417</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-22T16:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2789336#M87523</link>
      <description>&lt;P&gt;Amazing work. Thanks a lot. This helping me to remove the barrier.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 09:27:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2789336#M87523</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2022-09-23T09:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797008#M87911</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for reopening the post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What do i need to change in the formula if i need to do the following condition please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: All columns in the same table. The solution i am looking for is&amp;nbsp; "Status 2" column please&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Issue is, this is from same table and all i need to compare is if "Part number" same , if yes look for "Status" and if any of the status is "True" for those part numbers then "Status 2" expected to be "true" if not "False"&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 16:04:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797008#M87911</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2022-09-26T16:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797132#M87921</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="413988" data-lia-user-login="jimpatel" class="lia-mention lia-mention-user"&gt;jimpatel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry I did not understand. What do you mean by "if part number same"?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 15:57:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797132#M87921</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-26T15:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797168#M87927</link>
      <description>&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;In the above example, 123 have one "True" in the "Status" and therefore "Status 2" is true for 123.&lt;BR /&gt;23 does not have any true at all, therefore status 2 will be false for that&lt;BR /&gt;43 have two true and status 2 will be true for that&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Note: Part numbers wont be in the ascending or descending orders and it will be clustered around the rows.&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 16:06:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797168#M87927</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2022-09-26T16:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797211#M87932</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="413988" data-lia-user-login="jimpatel" class="lia-mention lia-mention-user"&gt;jimpatel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Trur/False =
IF (
    ISEMPTY (
        CALCULATETABLE (
            'Table',
            ALLEXCEPT ( 'Table', 'Table'[Part Number] ),
            Table2[True/False] = "TRUE"
        )
    ),
    "FALSE",
    "TRUE"
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 26 Sep 2022 16:22:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797211#M87932</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-26T16:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797252#M87935</link>
      <description>&lt;P&gt;Thanks for your reply,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i getting "Status 2" same as "Status" column for above formula&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 16:40:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797252#M87935</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2022-09-26T16:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797282#M87940</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="413988" data-lia-user-login="jimpatel" class="lia-mention lia-mention-user"&gt;jimpatel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Status2 =
IF (
    ISEMPTY (
        FILTER (
            CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[Part Number] ) ),
            'Table'[Status] = "TRUE"
        )
    ),
    "FALSE",
    "TRUE"
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 26 Sep 2022 16:48:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2797282#M87940</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-26T16:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2798999#M88020</link>
      <description>&lt;P&gt;This is really unbelievable work. Thanks a lot for your time. Can you please point me where i can learn these kind of formulas please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot again&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 08:04:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2798999#M88020</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2022-09-27T08:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2799141#M88029</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="413988" data-lia-user-login="jimpatel" class="lia-mention lia-mention-user"&gt;jimpatel&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Start from&amp;nbsp;&lt;A href="https://www.bing.com/ck/a?!&amp;amp;&amp;amp;p=5a5cd0905dc451e0JmltdHM9MTY2NDIzNjgwMCZpZ3VpZD0wNjdiOGQ0My1mNjNmLTYxMWQtMGI0MS04MzlmZjdlNDYwMGYmaW5zaWQ9NTE2MA&amp;amp;ptn=3&amp;amp;hsh=3&amp;amp;fclid=067b8d43-f63f-611d-0b41-839ff7e4600f&amp;amp;u=a1aHR0cHM6Ly93d3cuc3FsYmkuY29tL2Jvb2tzL3RoZS1kZWZpbml0aXZlLWd1aWRlLXRvLWRheC8&amp;amp;ntb=1" target="_blank" rel="noopener"&gt;The Definitive Guide to DAX&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 08:43:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula/m-p/2799141#M88029</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-27T08:43:43Z</dc:date>
    </item>
  </channel>
</rss>

