<?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: CONCATONATEX combining fields from two tables. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2013492#M44763</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;I get an error saying it cannot find name. The only fields that seem to be available for this are other calculated fields in the table.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Aug 2021 15:42:38 GMT</pubDate>
    <dc:creator>QueenTink</dc:creator>
    <dc:date>2021-08-12T15:42:38Z</dc:date>
    <item>
      <title>CONCATONATEX combining fields from two tables.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2013387#M44760</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I am needing to combine two fields, each from different tables in my dataset. Example of the data is&lt;/P&gt;&lt;P&gt;Table1&lt;/P&gt;&lt;P&gt;productkey&amp;nbsp; productseries&lt;/P&gt;&lt;P&gt;12345&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;XYZ23&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table2&lt;/P&gt;&lt;P&gt;productkey productcode&lt;/P&gt;&lt;P&gt;12345&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;001-002-003&lt;/P&gt;&lt;P&gt;What I need is a column in Table1 with productseries &amp;amp;"-"&amp;amp; productcode (XYZ23-001-002-003)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried a variety of different functions, but I'm not having any success. My latest attempt is below.&lt;/P&gt;&lt;P&gt;NewField=&amp;nbsp;&lt;SPAN&gt;CONCATENATEX(Table1,&lt;/SPAN&gt;&lt;SPAN&gt;CROSSFILTER(Table1[productkey],Table2[productkey],Both),Table1[productseries] &amp;amp;"-"&amp;amp; Table2[productcode])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 15:10:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2013387#M44760</guid>
      <dc:creator>QueenTink</dc:creator>
      <dc:date>2021-08-12T15:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: CONCATONATEX combining fields from two tables.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2013420#M44761</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="319533" data-lia-user-login="QueenTink" class="lia-mention lia-mention-user"&gt;QueenTink&lt;/a&gt;&amp;nbsp;How about:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column = [productseries] &amp;amp; "-" &amp;amp; RELATED('Table2'[productcode])&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 12 Aug 2021 15:22:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2013420#M44761</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2021-08-12T15:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: CONCATONATEX combining fields from two tables.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2013492#M44763</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;I get an error saying it cannot find name. The only fields that seem to be available for this are other calculated fields in the table.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 15:42:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2013492#M44763</guid>
      <dc:creator>QueenTink</dc:creator>
      <dc:date>2021-08-12T15:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: CONCATONATEX combining fields from two tables.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2013614#M44766</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="319533" data-lia-user-login="QueenTink" class="lia-mention lia-mention-user"&gt;QueenTink&lt;/a&gt;&amp;nbsp;Are you trying to create a column or a measure? The post said column. If you need a measure it will be like:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column = MAX([productseries]) &amp;amp; "-" &amp;amp; MAX('Table2'[productcode])&lt;/LI-CODE&gt;
&lt;P&gt;This assumes an appropriate relationship between the tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 16:34:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2013614#M44766</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2021-08-12T16:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: CONCATONATEX combining fields from two tables.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2016910#M44888</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="319533" data-lia-user-login="QueenTink" class="lia-mention lia-mention-user"&gt;QueenTink&lt;/a&gt;&amp;nbsp;Do you have a relationship between your two tables?&lt;BR /&gt;Is it Many to one?&lt;/P&gt;</description>
      <pubDate>Sun, 15 Aug 2021 16:25:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/CONCATONATEX-combining-fields-from-two-tables/m-p/2016910#M44888</guid>
      <dc:creator>m3tr01d</dc:creator>
      <dc:date>2021-08-15T16:25:24Z</dc:date>
    </item>
  </channel>
</rss>

