<?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: Inner Join count rows in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4760202#M182270</link>
    <description>&lt;LI-CODE lang="markup"&gt;Inner Join Row Count :=
COUNTROWS (
    GENERATE(
        Table1,
        FILTER(
            Table2,
            Table2[ID] = Table1[ID]
        )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Left Outer Join Row Count :=
COUNTROWS (
    GENERATE (
        Table1,
        VAR MatchingRows =
            FILTER (
                Table2,
                Table2[ID] = Table1[ID]
            )
        RETURN
            IF (
                COUNTROWS(MatchingRows) &amp;gt; 0,
                MatchingRows,
                ROW ( "ID", BLANK(), "Location", BLANK() )  -- simulate left join with blanks
            )
    )
)&lt;/LI-CODE&gt;</description>
    <pubDate>Fri, 11 Jul 2025 14:22:15 GMT</pubDate>
    <dc:creator>ashleyfiore</dc:creator>
    <dc:date>2025-07-11T14:22:15Z</dc:date>
    <item>
      <title>Inner Join count rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4759617#M182256</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find the below table and do the&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Table1:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;ID, Name&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;1, A&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;1, B&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;STRONG&gt;table 2:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;ID, Location&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;1,D&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;1,E&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;2,F&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;What is the Inner join count rows?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;what is the left outer join count rows ?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 06:06:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4759617#M182256</guid>
      <dc:creator>krishna_murthy</dc:creator>
      <dc:date>2025-07-11T06:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join count rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4759623#M182257</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1082687" data-lia-user-login="krishna_murthy" class="lia-mention lia-mention-user"&gt;krishna_murthy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;An inner join will return only the rows where there is a match in both tables based on the ID column.&lt;/P&gt;
&lt;P&gt;ID, Name, Location&lt;BR /&gt;1, A, D&lt;BR /&gt;1, A, E&lt;BR /&gt;1, B, D&lt;BR /&gt;1, B, E&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A left outer join will return all rows from Table1 and the matched rows from Table2. If there is no match, the result is NULL on the side of Table2.&lt;/P&gt;
&lt;P&gt;ID, Name, Location&lt;BR /&gt;1, A, D&lt;BR /&gt;1, A, E&lt;BR /&gt;1, B, D&lt;BR /&gt;1, B, E&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 06:15:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4759623#M182257</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-07-11T06:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join count rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4759908#M182262</link>
      <description>&lt;P&gt;You are only asking the result or you want the DAX code to create the tables?&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 09:37:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4759908#M182262</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-07-11T09:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join count rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4760202#M182270</link>
      <description>&lt;LI-CODE lang="markup"&gt;Inner Join Row Count :=
COUNTROWS (
    GENERATE(
        Table1,
        FILTER(
            Table2,
            Table2[ID] = Table1[ID]
        )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Left Outer Join Row Count :=
COUNTROWS (
    GENERATE (
        Table1,
        VAR MatchingRows =
            FILTER (
                Table2,
                Table2[ID] = Table1[ID]
            )
        RETURN
            IF (
                COUNTROWS(MatchingRows) &amp;gt; 0,
                MatchingRows,
                ROW ( "ID", BLANK(), "Location", BLANK() )  -- simulate left join with blanks
            )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 11 Jul 2025 14:22:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4760202#M182270</guid>
      <dc:creator>ashleyfiore</dc:creator>
      <dc:date>2025-07-11T14:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join count rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4762189#M182378</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1082687" data-lia-user-login="krishna_murthy" class="lia-mention lia-mention-user"&gt;krishna_murthy&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179453" data-lia-user-login="ashleyfiore" class="lia-mention lia-mention-user"&gt;ashleyfiore&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;&amp;nbsp;abnd&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;for the prompt response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided by the user's resolved your issue? or let us know if you need any further assistance.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;BR /&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 12:50:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4762189#M182378</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-07-14T12:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join count rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4767382#M182612</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1082687" target="_blank"&gt;@krishna_murthy&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We wanted to kindly follow up to check if the solution provided by the user's resolved your issue? or let us know if you need any further assistance.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;BR /&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2025 18:05:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4767382#M182612</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2025-07-17T18:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join count rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4770654#M182709</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1082687" target="_blank" rel="noopener"&gt;@krishna_murthy&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We wanted to kindly follow up to check if the solution provided by the user's resolved your issue? or let us know if you need any further assistance.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jul 2025 12:06:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Inner-Join-count-rows/m-p/4770654#M182709</guid>
      <dc:creator>v-kathullac</dc:creator>
      <dc:date>2025-07-21T12:06:24Z</dc:date>
    </item>
  </channel>
</rss>

