<?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 left join two tables both generated from DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/left-join-two-tables-both-generated-from-DAX/m-p/3220553#M117703</link>
    <description>&lt;P&gt;Hi All, i have a seemingly extremely simple left join to create a combined table in Power BI desktop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have table 1 which all combinations of 'Month' and 'Customers' (e.g.&amp;nbsp; all months by all customers), table 2 with same columns but only with months or customers that have had transactions and the 'transaction amount' as third column, i want to do a left join so that i end up all customers and all months, so that some custoemrs would then have lots of blank 'transaction amount' for the months where they haven't had any transaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both tables have been created with DAX.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried NATRUALOUTERLEFT, all variations of SELECTCOLUMNS but to no avail.&amp;nbsp; Any help would be much appreciated!&lt;/P&gt;</description>
    <pubDate>Thu, 04 May 2023 17:17:37 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-05-04T17:17:37Z</dc:date>
    <item>
      <title>left join two tables both generated from DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/left-join-two-tables-both-generated-from-DAX/m-p/3220553#M117703</link>
      <description>&lt;P&gt;Hi All, i have a seemingly extremely simple left join to create a combined table in Power BI desktop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have table 1 which all combinations of 'Month' and 'Customers' (e.g.&amp;nbsp; all months by all customers), table 2 with same columns but only with months or customers that have had transactions and the 'transaction amount' as third column, i want to do a left join so that i end up all customers and all months, so that some custoemrs would then have lots of blank 'transaction amount' for the months where they haven't had any transaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both tables have been created with DAX.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried NATRUALOUTERLEFT, all variations of SELECTCOLUMNS but to no avail.&amp;nbsp; Any help would be much appreciated!&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 17:17:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/left-join-two-tables-both-generated-from-DAX/m-p/3220553#M117703</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-04T17:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: left join two tables both generated from DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/left-join-two-tables-both-generated-from-DAX/m-p/3221618#M117756</link>
      <description>&lt;P&gt;You could add a column to table 1 like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Transaction amount =
LOOKUPVALUE (
    'Table 2'[Transaction amount],
    'Table 2'[Month], 'Table 1'[Month],
    'Table 2'[Customer], 'Table 1'[Customer]
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 05 May 2023 08:21:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/left-join-two-tables-both-generated-from-DAX/m-p/3221618#M117756</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-05-05T08:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: left join two tables both generated from DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/left-join-two-tables-both-generated-from-DAX/m-p/3221768#M117768</link>
      <description>&lt;P&gt;this is great! so simple and clear.&amp;nbsp; Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 09:36:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/left-join-two-tables-both-generated-from-DAX/m-p/3221768#M117768</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-05T09:36:32Z</dc:date>
    </item>
  </channel>
</rss>

