<?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: Need a Dax to make a measure for counting the rows on a dynamic table using 2 parameters [Power BI] in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4697307#M179909</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1273354" data-lia-user-login="Hitha" class="lia-mention lia-mention-user"&gt;Hitha&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have gotten this issue resolved?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is solved, please mark the helpful reply or share your solution and &lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;I&gt;accept it as solution&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;, it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV style="direction: ltr;"&gt;
&lt;TABLE style="direction: ltr; border-collapse: collapse; border: 1pt solid #A3A3A3;" title="" border="1" summary="" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD style="background-color: #c5e0b3; vertical-align: top; width: 7.9659in; padding: 4pt 4pt 4pt 4pt; border: 1pt solid #A3A3A3;"&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Please don't forget to give a "Kudos&amp;nbsp;&lt;img /&gt;" – I’d truly appreciate it!&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;P style="margin: 0in; margin-left: 3.0in; font-family: Arial; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;B Manikanteswara Reddy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 18 May 2025 16:54:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-05-18T16:54:41Z</dc:date>
    <item>
      <title>Need a Dax to make a measure for counting the rows on a dynamic table using 2 parameters [Power BI]</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4685934#M179476</link>
      <description>&lt;P&gt;The Row count needs to be displayed on a Key card next to the table visual.&lt;/P&gt;&lt;P&gt;The Data of the Table is from two Parameters (Multi-selection) :&lt;BR /&gt;'Selected Dimensions P3'[Select Dimensions]&lt;BR /&gt;'Selected Measures P3'[Select Measures]&lt;BR /&gt;Rows on the Table keeps changing according to the field selection by the viewer. The row count on the key card should simultaneously change to the current number of rows displayed on Table Visual.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 05:39:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4685934#M179476</guid>
      <dc:creator>Hitha</dc:creator>
      <dc:date>2025-05-09T05:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Dax to make a measure for counting the rows on a dynamic table using 2 parameters [Power BI]</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4686566#M179502</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1273354" data-lia-user-login="Hitha" class="lia-mention lia-mention-user"&gt;Hitha&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community Forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As per our understanding of your scenario, here's the DAX measure that you can use to dynamically count the rows shown in a table visual based on the viewer's selection through field parameters:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DynamicTableRC = &lt;BR /&gt;VAR DimFields = &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADDCOLUMNS(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Selected Dimensions P3',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "IsVisible", ISINSCOPE([Select Dimensions])&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;VAR VisibleDims = &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILTER(DimFields, [IsVisible])&lt;/P&gt;
&lt;P&gt;RETURN&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUNTROWS(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUMMARIZE(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'FactTable',&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Replace with your actual base data table&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VisibleDims&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this doesn't meet your scenario, we kindly request you to, share a sample dataset that mimics your use case (without sensitive information) along with the expected output, or upload a sample PBIX file so we can review the structure and assist with a more accurate solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;B Manikanteswara Reddy&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 11:48:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4686566#M179502</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-09T11:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Dax to make a measure for counting the rows on a dynamic table using 2 parameters [Power BI]</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4689069#M179575</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1273354" data-lia-user-login="Hitha" class="lia-mention lia-mention-user"&gt;Hitha&lt;/a&gt;&amp;nbsp;,&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 for the issue worked? or Let us know if you need any further assistance?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;I&gt;If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful&lt;/I&gt;&lt;/STRONG&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;B Manikanteswara Reddy&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 11:14:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4689069#M179575</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-12T11:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Dax to make a measure for counting the rows on a dynamic table using 2 parameters [Power BI]</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4694397#M179781</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1273354" data-lia-user-login="Hitha" class="lia-mention lia-mention-user"&gt;Hitha&lt;/a&gt;&amp;nbsp;,&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 for the issue worked? or Let us know if you need any further assistance?&lt;/P&gt;
&lt;P&gt;If our response addressed, please mark it as &lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;I&gt;Accept as &lt;/I&gt;&lt;/STRONG&gt;&lt;STRONG&gt;solution&lt;/STRONG&gt;&lt;/FONT&gt; and click Yes if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV style="direction: ltr;"&gt;
&lt;TABLE style="direction: ltr; border-collapse: collapse; border: 1pt solid #A3A3A3;" title="" border="1" summary="" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD style="background-color: #c5e0b3; vertical-align: top; width: 7.7854in; padding: 4pt 4pt 4pt 4pt; border: 1pt solid #A3A3A3;"&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Please don't forget to give a "Kudos&amp;nbsp;&lt;img /&gt;" – I’d truly appreciate it!&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;P style="margin: 0in; margin-left: 3.0in; font-family: Arial; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;B Manikanteswara Reddy&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 13:04:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4694397#M179781</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-15T13:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need a Dax to make a measure for counting the rows on a dynamic table using 2 parameters [Power BI]</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4697307#M179909</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1273354" data-lia-user-login="Hitha" class="lia-mention lia-mention-user"&gt;Hitha&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have gotten this issue resolved?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is solved, please mark the helpful reply or share your solution and &lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;I&gt;accept it as solution&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;, it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV style="direction: ltr;"&gt;
&lt;TABLE style="direction: ltr; border-collapse: collapse; border: 1pt solid #A3A3A3;" title="" border="1" summary="" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD style="background-color: #c5e0b3; vertical-align: top; width: 7.9659in; padding: 4pt 4pt 4pt 4pt; border: 1pt solid #A3A3A3;"&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Please don't forget to give a "Kudos&amp;nbsp;&lt;img /&gt;" – I’d truly appreciate it!&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;P style="margin: 0in; margin-left: 3.0in; font-family: Arial; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 11.0pt;"&gt;B Manikanteswara Reddy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 18 May 2025 16:54:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-a-Dax-to-make-a-measure-for-counting-the-rows-on-a-dynamic/m-p/4697307#M179909</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-18T16:54:41Z</dc:date>
    </item>
  </channel>
</rss>

