<?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 Calculated column checking if value exists in another table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-checking-if-value-exists-in-another-table/m-p/2823300#M89674</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 2 different tables&lt;/P&gt;&lt;P&gt;1st Table :&amp;nbsp; 14000 names&lt;/P&gt;&lt;P&gt;2 nd table : 25000 names&lt;/P&gt;&lt;P&gt;I would like to add a column to 2nd Table : True if same value as 1st table , False for missing value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Oct 2022 15:27:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-10-06T15:27:24Z</dc:date>
    <item>
      <title>Calculated column checking if value exists in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-checking-if-value-exists-in-another-table/m-p/2823300#M89674</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 2 different tables&lt;/P&gt;&lt;P&gt;1st Table :&amp;nbsp; 14000 names&lt;/P&gt;&lt;P&gt;2 nd table : 25000 names&lt;/P&gt;&lt;P&gt;I would like to add a column to 2nd Table : True if same value as 1st table , False for missing value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 15:27:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-checking-if-value-exists-in-another-table/m-p/2823300#M89674</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-06T15:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated column checking if value exists in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-checking-if-value-exists-in-another-table/m-p/2823384#M89680</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Think this function is what you're after:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/dax/lookupvalue-function-dax" target="_blank"&gt;https://learn.microsoft.com/en-us/dax/lookupvalue-function-dax&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 15:56:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-checking-if-value-exists-in-another-table/m-p/2823384#M89680</guid>
      <dc:creator>BITomS</dc:creator>
      <dc:date>2022-10-06T15:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated column checking if value exists in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-checking-if-value-exists-in-another-table/m-p/2823425#M89686</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I do agree with&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="331637" data-lia-user-login="BITomS" class="lia-mention lia-mention-user"&gt;BITomS&lt;/a&gt;&amp;nbsp;if your absolutely need:want to do it in DAX.&lt;/P&gt;
&lt;P&gt;My solution would be using a merge in Power Query between both tables.&lt;/P&gt;
&lt;P&gt;Let us know if you need more details&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 16:15:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-checking-if-value-exists-in-another-table/m-p/2823425#M89686</guid>
      <dc:creator>AilleryO</dc:creator>
      <dc:date>2022-10-06T16:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated column checking if value exists in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-checking-if-value-exists-in-another-table/m-p/2823545#M89694</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;many options&lt;/P&gt;
&lt;P&gt;Table2[Name] IN VALUES (&amp;nbsp;&lt;SPAN&gt;Table1[Name] )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;or&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;CONTAINS ( Table1,&amp;nbsp;Table1[Name],&amp;nbsp;Table2[Name] )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;or&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;NOT ISEMPTY ( FILTER ( Table1, Table1[Name] = Table2[Name] ) )&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 17:08:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-checking-if-value-exists-in-another-table/m-p/2823545#M89694</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-10-06T17:08:58Z</dc:date>
    </item>
  </channel>
</rss>

