<?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: Count Rows of a Visual Table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4758134#M182200</link>
    <description>&lt;P&gt;It looks like the number of rows is determined by unique combinations of EMAIL ADDRESS, ARTIFACT SUBMISSION, and COURSE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Assuming these are all columns of a single table named Table1, I'd expect something like this to work:&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;COUNTROWS (
    SUMMARIZECOLUMNS (
        Table1[EMAIL ADDRESS],
        Table1[ARTIFACT SUBMISSION],
        Table1[COURSE]
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jul 2025 22:05:06 GMT</pubDate>
    <dc:creator>AlexisOlson</dc:creator>
    <dc:date>2025-07-09T22:05:06Z</dc:date>
    <item>
      <title>Count Rows of a Visual Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4758124#M182198</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the example below, I am trying to create a measure that counts the number of rows of this specific visual table, not of the rows of data in the table "behind the scenes." Specifically, I am trying to identify/count that we have a total of eight (8) for the EMAIL ADDRESS column. DISTINCTCOUNT gives me a result of 2 while&amp;nbsp;&lt;SPAN&gt;COUNTROWS gives me a result of 11. I would appreciate any ideas. Thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 21:41:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4758124#M182198</guid>
      <dc:creator>barragan82</dc:creator>
      <dc:date>2025-07-09T21:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows of a Visual Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4758134#M182200</link>
      <description>&lt;P&gt;It looks like the number of rows is determined by unique combinations of EMAIL ADDRESS, ARTIFACT SUBMISSION, and COURSE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Assuming these are all columns of a single table named Table1, I'd expect something like this to work:&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;COUNTROWS (
    SUMMARIZECOLUMNS (
        Table1[EMAIL ADDRESS],
        Table1[ARTIFACT SUBMISSION],
        Table1[COURSE]
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 22:05:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4758134#M182200</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2025-07-09T22:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows of a Visual Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4758398#M182212</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1305896" data-lia-user-login="barragan82" class="lia-mention lia-mention-user"&gt;barragan82&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out to the Microsoft fabric community forum. Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp; for your input on this issue.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;After reviewing the details you provided, I was able to reproduce the scenario, I have used it as sample data on my end and implemented it.&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Dax Measure:&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Row Visual Count = 
IF(
    ISINSCOPE('Instructors'[EMAIL ADDRESS]) &amp;amp;&amp;amp; ISINSCOPE('Instructors'[COURSE]),
    1,
    COUNTROWS(
        SUMMARIZE(
            'Instructors',
            'Instructors'[EMAIL ADDRESS],
            'Instructors'[COURSE]
        )
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post helps, then please give us ‘Kudos’ and consider Accept it as a solution to help the other members find it more quickly.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 05:18:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4758398#M182212</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-07-10T05:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows of a Visual Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4759010#M182239</link>
      <description>&lt;P&gt;Thank you, this did exactly what I wanted it to.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 13:17:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4759010#M182239</guid>
      <dc:creator>barragan82</dc:creator>
      <dc:date>2025-07-10T13:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows of a Visual Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4759012#M182240</link>
      <description>&lt;P&gt;That did exactly what I needed. Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 13:18:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4759012#M182240</guid>
      <dc:creator>barragan82</dc:creator>
      <dc:date>2025-07-10T13:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows of a Visual Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4825117#M184377</link>
      <description>&lt;P&gt;There is a solution for that using Python Visual. It is a solution that fits even if you use field parameters in your table.&lt;BR /&gt;&lt;A href="https://www.simpledev.tech/post/how-to-display-the-number-of-rows-in-a-power-bi-table-visual" target="_blank"&gt;https://www.simpledev.tech/post/how-to-display-the-number-of-rows-in-a-power-bi-table-visual&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Sep 2025 13:02:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4825117#M184377</guid>
      <dc:creator>aleksvp</dc:creator>
      <dc:date>2025-09-13T13:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows of a Visual Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4860842#M185414</link>
      <description>&lt;P&gt;If you are asking what I think you are asking, there might be a simpler solution for you.&amp;nbsp;&lt;BR /&gt;The short version is create a measure like this and add it to your table:&lt;BR /&gt;RowsDisplayed_TotalOnly = IF(ISINSCOPE('DataTableName'[PrimaryKeyFieldName]), " ", COUNTROWS(ALLSELECTED('DataTableName')))&lt;/P&gt;&lt;P&gt;For more details on usage and why it works, see&amp;nbsp;my recent comment on&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-display-the-count-of-the-rows-in-a-table-visual/m-p/881187/highlight/false#M422323" target="_blank"&gt;Solved: How to display the count of the rows in a table vi... - Microsoft Fabric Community&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 16:50:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4860842#M185414</guid>
      <dc:creator>BonnieW</dc:creator>
      <dc:date>2025-10-28T16:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows of a Visual Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4868237#M185614</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="760245" data-lia-user-login="BonnieW" class="lia-mention lia-mention-user"&gt;BonnieW&lt;/a&gt;! I'll keep this in mind the next time I need this function.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 16:11:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-of-a-Visual-Table/m-p/4868237#M185614</guid>
      <dc:creator>barragan82</dc:creator>
      <dc:date>2025-11-06T16:11:54Z</dc:date>
    </item>
  </channel>
</rss>

