<?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: Custom Column in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Column/m-p/3405862#M44171</link>
    <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your statement, I know there is no relationship between two tables. I suggest you to try code as below to achieve your goal.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Name from Table 2 =
/*Workaround 1: If you have one name for one ID*/
CALCULATE (
    MAX ( Table2[Name] ),
    FILTER (
        Table2,
        Table2[ID] = EARLIER ( Table1[ID] )
    ) /*Workaround 2: If you have multiple names for one ID
CONCATENATEX(FILTER(Table2,Table2[ID] = EARLIER(Table1[ID])),Table2[Name],",")*/
)&lt;/LI-CODE&gt;
&lt;P&gt;Result is as below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vrzhoumsft_0-1693376602976.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/962239i281D588FFC74D40C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vrzhoumsft_0-1693376602976.png" alt="vrzhoumsft_0-1693376602976.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 30 Aug 2023 06:23:45 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-08-30T06:23:45Z</dc:date>
    <item>
      <title>Custom Column</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Column/m-p/3402866#M44128</link>
      <description>&lt;P&gt;If Table 1 has a common feild as table two then bring third column from Table two in Table 1.&lt;/P&gt;&lt;P&gt;IF Table1(ID) = Table2(ID)&lt;/P&gt;&lt;P&gt;Than Return Table2(Name)&lt;/P&gt;&lt;P&gt;Not able to create direct relationship due to having indirect relationship between both the tables.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Aug 2023 19:06:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Column/m-p/3402866#M44128</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-28T19:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Column</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Column/m-p/3403596#M44136</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You can use Lookup function in DAX expression as below,&lt;BR /&gt;&lt;BR /&gt;column1 = Lookup(table2, Table2(ID), Table(1)ID, Table2(Name)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Inogic Professional Services Division&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Power Platform and Microsoft Dynamics 365 CRM Development – All under one roof!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Drop an email at &lt;/SPAN&gt;&lt;A href="mailto:crm@inogic.com" target="_blank"&gt;crm@inogic.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Services:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://www.inogic.com/services/" target="_blank"&gt;http://www.inogic.com/services/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Power Platform/Dynamics 365 CRM Tips and Tricks:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://www.inogic.com/blog/" target="_blank"&gt;http://www.inogic.com/blog/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 06:34:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Column/m-p/3403596#M44136</guid>
      <dc:creator>SamInogic</dc:creator>
      <dc:date>2023-08-29T06:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Column</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Column/m-p/3405862#M44171</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your statement, I know there is no relationship between two tables. I suggest you to try code as below to achieve your goal.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Name from Table 2 =
/*Workaround 1: If you have one name for one ID*/
CALCULATE (
    MAX ( Table2[Name] ),
    FILTER (
        Table2,
        Table2[ID] = EARLIER ( Table1[ID] )
    ) /*Workaround 2: If you have multiple names for one ID
CONCATENATEX(FILTER(Table2,Table2[ID] = EARLIER(Table1[ID])),Table2[Name],",")*/
)&lt;/LI-CODE&gt;
&lt;P&gt;Result is as below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vrzhoumsft_0-1693376602976.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/962239i281D588FFC74D40C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vrzhoumsft_0-1693376602976.png" alt="vrzhoumsft_0-1693376602976.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 06:23:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Column/m-p/3405862#M44171</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-30T06:23:45Z</dc:date>
    </item>
  </channel>
</rss>

