<?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 Shared value from two different columns put into one in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4862414#M185467</link>
    <description>&lt;P&gt;Hello I am combining notes from two different data sources and want to group rows based on a shared ID to combine the notes from these sources. In one table it is called 'objectid' and in the other it is 'regardingobjectid'. Is it possible for me to group by the shared value that each of these columns have in both the id fields shown below to combine the notes from each?&amp;nbsp;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Oct 2025 12:02:04 GMT</pubDate>
    <dc:creator>docs</dc:creator>
    <dc:date>2025-10-30T12:02:04Z</dc:date>
    <item>
      <title>Shared value from two different columns put into one</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4862414#M185467</link>
      <description>&lt;P&gt;Hello I am combining notes from two different data sources and want to group rows based on a shared ID to combine the notes from these sources. In one table it is called 'objectid' and in the other it is 'regardingobjectid'. Is it possible for me to group by the shared value that each of these columns have in both the id fields shown below to combine the notes from each?&amp;nbsp;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 12:02:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4862414#M185467</guid>
      <dc:creator>docs</dc:creator>
      <dc:date>2025-10-30T12:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Shared value from two different columns put into one</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4862525#M185472</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="451461" data-lia-user-login="docs" class="lia-mention lia-mention-user"&gt;docs&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a bridge table that unions both ID columns:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Combined IDs =&lt;BR /&gt;DISTINCT(&lt;BR /&gt;UNION(&lt;BR /&gt;SELECTCOLUMNS(Table1, "ID", Table1[objectid]),&lt;BR /&gt;SELECTCOLUMNS(Table2, "ID", Table2[regardingobjectid])&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Relate both original tables to this bridge table. Then create a measure that combines notes from both tables using the shared ID relationship.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this answer helped, please click Kudos or mark as Solution.&lt;BR /&gt;-Kedar&lt;BR /&gt;LinkedIn: &lt;A href="https://www.linkedin.com/in/kedar-pande" target="_blank"&gt;https://www.linkedin.com/in/kedar-pande&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 13:36:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4862525#M185472</guid>
      <dc:creator>Kedar_Pande</dc:creator>
      <dc:date>2025-10-30T13:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Shared value from two different columns put into one</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4862558#M185473</link>
      <description>&lt;P&gt;Hi, do I create the measure in the bridge table and which function should&amp;nbsp; I use to create the measure?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 14:07:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4862558#M185473</guid>
      <dc:creator>docs</dc:creator>
      <dc:date>2025-10-30T14:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Shared value from two different columns put into one</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4864757#M185529</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="451461" data-lia-user-login="docs" class="lia-mention lia-mention-user"&gt;docs&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P data-start="105" data-end="325"&gt;You don’t have to create the measure inside the bridge table. In Power BI, measures aren’t limited to any one table&amp;nbsp; you can create it in any table you prefer.&lt;/P&gt;
&lt;P data-start="327" data-end="487"&gt;After you set up the relationships between the bridge table and both note tables, then you can create the measure to combine the notes based on the shared ID.&lt;BR /&gt;as suggested&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="568855" data-lia-user-login="Kedar_Pande" class="lia-mention lia-mention-user"&gt;Kedar_Pande&lt;/a&gt;&amp;nbsp; the above use&amp;nbsp;&lt;STRONG data-start="487" data-end="498"&gt;RELATED&lt;/STRONG&gt; function in your measure to combine the notes based on the shared ID.&lt;BR /&gt;&lt;BR /&gt;Hope this helps !!&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2025 09:04:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4864757#M185529</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-11-03T09:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Shared value from two different columns put into one</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4867853#M185602</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="451461" data-lia-user-login="docs" class="lia-mention lia-mention-user"&gt;docs&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Following up to confirm if the earlier responses addressed your query. If not, please share your questions and we’ll assist further.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 09:37:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4867853#M185602</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-11-06T09:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Shared value from two different columns put into one</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4867974#M185608</link>
      <description>&lt;P&gt;Yes they did. Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 11:35:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Shared-value-from-two-different-columns-put-into-one/m-p/4867974#M185608</guid>
      <dc:creator>docs</dc:creator>
      <dc:date>2025-11-06T11:35:00Z</dc:date>
    </item>
  </channel>
</rss>

