<?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: Comparing mutliples tables and returing unique values in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3106073#M109464</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="520150" data-lia-user-login="andhiii079845" class="lia-mention lia-mention-user"&gt;andhiii079845&lt;/a&gt;Thank you for that. That helped get me in the right direction. The one thing I am noticing now that I am taking another look at it is that I actually need to return the numbers that are not in Table B.&lt;BR /&gt;&lt;BR /&gt;I have part of the measure you provided me:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;Measure = &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;__table1&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;countrows&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableA&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;RELATEDTABLE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableB&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;Filter&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableA&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;TableA&lt;/SPAN&gt;&lt;SPAN&gt;[Fruit]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;"Kiwi&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt; &lt;SPAN&gt;__table1&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;This gives me the numbers from TableA that are also in TableB which is what I had orginally thought I needed but now I am looking at the data and I need the numbers from TableA that are not in TableB. I seem to be having trouble modifying that measure properly. Any suggestions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the help.&lt;/P&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 01 Mar 2023 14:46:33 GMT</pubDate>
    <dc:creator>Anonymous_226</dc:creator>
    <dc:date>2023-03-01T14:46:33Z</dc:date>
    <item>
      <title>Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3104578#M109330</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a requirement for the following to be done in DAX. I cannot create and additonal columns as I am connected with direct query to a dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a scenario with 2 seperate tables that are related by a number column.&lt;BR /&gt;&lt;BR /&gt;Table A&lt;BR /&gt;Number | Fruit&lt;BR /&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Apple&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Orange&lt;/P&gt;&lt;P&gt;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Strawberry&lt;/P&gt;&lt;P&gt;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Grape&lt;/P&gt;&lt;P&gt;5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Plum&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Kiwi&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Kiwi&lt;BR /&gt;&lt;BR /&gt;Table B&lt;/P&gt;&lt;P&gt;Order &amp;nbsp; &amp;nbsp; | Number&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; | 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 2&lt;/P&gt;&lt;P&gt;00367&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 3&lt;/P&gt;&lt;P&gt;00485&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 4&lt;/P&gt;&lt;P&gt;00059&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 5&lt;/P&gt;&lt;P&gt;00689&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 6&lt;/P&gt;&lt;P&gt;00745&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 8&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I am looking to accomplish:&lt;BR /&gt;1. The first thing I need to do is take Table A and remove any row that has the Kiwi in the fruit column.&lt;/P&gt;&lt;P&gt;2. I need to take the values in the number column of Table A and find wich of those are not present in the number column in Table B&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 20:25:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3104578#M109330</guid>
      <dc:creator>Anonymous_226</dc:creator>
      <dc:date>2023-03-02T20:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3105364#M109383</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;Measure = &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;__table1&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;countrows&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableA&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;RELATEDTABLE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableB&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;Filter&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableA&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;TableA&lt;/SPAN&gt;&lt;SPAN&gt;[Fruit]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;"Kiwi&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;Filter&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableB&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;TableB&lt;/SPAN&gt;&lt;SPAN&gt;[Order]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;BLANK&lt;/SPAN&gt;&lt;SPAN&gt;()))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt; &lt;SPAN&gt;__table1&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;The result:&lt;/SPAN&gt;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 Mar 2023 06:53:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3105364#M109383</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-03-01T06:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3106073#M109464</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="520150" data-lia-user-login="andhiii079845" class="lia-mention lia-mention-user"&gt;andhiii079845&lt;/a&gt;Thank you for that. That helped get me in the right direction. The one thing I am noticing now that I am taking another look at it is that I actually need to return the numbers that are not in Table B.&lt;BR /&gt;&lt;BR /&gt;I have part of the measure you provided me:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;Measure = &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;__table1&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;countrows&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableA&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;RELATEDTABLE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableB&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;Filter&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableA&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;TableA&lt;/SPAN&gt;&lt;SPAN&gt;[Fruit]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;"Kiwi&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt; &lt;SPAN&gt;__table1&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;This gives me the numbers from TableA that are also in TableB which is what I had orginally thought I needed but now I am looking at the data and I need the numbers from TableA that are not in TableB. I seem to be having trouble modifying that measure properly. Any suggestions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the help.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 Mar 2023 14:46:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3106073#M109464</guid>
      <dc:creator>Anonymous_226</dc:creator>
      <dc:date>2023-03-01T14:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3106325#M109498</link>
      <description>&lt;P&gt;If you change the "direction" of the search / look up, you need to change relatedtable to related. Both depands of the relationship: 1:n. Do you look from "1" to the "n" table or do you look from "n" to the "1" table.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 17:12:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3106325#M109498</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-03-01T17:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3106420#M109511</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="522255" data-lia-user-login="Anonymous_226" class="lia-mention lia-mention-user"&gt;Anonymous_226&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please place the following filter measure in the filter pane of the table visual, select "is not blank" and apply the filter&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FilterMeasure =&lt;BR /&gt;COUNTROWS (&lt;BR /&gt;FILTER (&lt;BR /&gt;TableA,&lt;BR /&gt;TableA[Fruit] &amp;lt;&amp;gt; "Kiwi"&lt;BR /&gt;&amp;amp;&amp;amp; TableA[Number]&lt;BR /&gt;IN CALCULATETABLE ( VALUES ( TableB[Number] ), TableB[Order] = BLANK () )&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 18:18:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3106420#M109511</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-01T18:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3106505#M109522</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="520150" data-lia-user-login="andhiii079845" class="lia-mention lia-mention-user"&gt;andhiii079845&lt;/a&gt;that makes a bit more sense then. TableA has a 1:n relationship to TableB so i would be looking from the "1" to the "n"&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 19:15:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3106505#M109522</guid>
      <dc:creator>Anonymous_226</dc:creator>
      <dc:date>2023-03-01T19:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3108374#M109695</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;Thank you for that. What I am seeing is that gives me all of the numbers from TableA that are present in TableB. However in the comments below I am needing to get all the numbers in TableA that are not in TableB. I cant see to correct the measure properly to achieve that. Do you have any suggestions?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 16:54:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3108374#M109695</guid>
      <dc:creator>Anonymous_226</dc:creator>
      <dc:date>2023-03-02T16:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3108597#M109704</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="522255" data-lia-user-login="Anonymous_226" class="lia-mention lia-mention-user"&gt;Anonymous_226&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Seems to working. I even tried a 2nd option. See below and refer to attached sample file. Please provide sample data that accurately simulates you real one.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 18:50:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3108597#M109704</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-02T18:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3108758#M109713</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;in my relationship TableA a 1:* with TableB. Would that make a difference? When I try your "FilterMeasure 2" i get an error saying there is no relationship available from TableB[order]&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 20:13:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3108758#M109713</guid>
      <dc:creator>Anonymous_226</dc:creator>
      <dc:date>2023-03-02T20:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3109381#M109747</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="522255" data-lia-user-login="Anonymous_226" class="lia-mention lia-mention-user"&gt;Anonymous_226&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As per the sample data, TableA is the many and TableB is the one not the opposite. Again please double check and provide correct sample data.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 03:37:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3109381#M109747</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-03T03:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing mutliples tables and returing unique values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3120833#M110671</link>
      <description>&lt;P&gt;&lt;FONT&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="522255" data-lia-user-login="Anonymous_226" class="lia-mention lia-mention-user"&gt;Anonymous_226&lt;/a&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can try the following methods&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;BR /&gt;New Table:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table = FILTER('Table A',[Fruit]&amp;lt;&amp;gt;"Kiwi")&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Table B:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
Var _table=EXCEPT(VALUES('Table'[Number]),VALUES('Table B'[Number]))
Return
IF(SELECTEDVALUE('Table'[Number]) in _table,1,0)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Is this the result you expect?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _Charlotte&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 08:05:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-mutliples-tables-and-returing-unique-values/m-p/3120833#M110671</guid>
      <dc:creator>v-zhangti</dc:creator>
      <dc:date>2023-03-09T08:05:40Z</dc:date>
    </item>
  </channel>
</rss>

