<?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 the number of rows selected in a table visual in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/4320245#M171519</link>
    <description>&lt;P&gt;Hi Desauln - I have the exact same problem I am trying to work out.&amp;nbsp; Did you ever find a solution?&lt;/P&gt;</description>
    <pubDate>Mon, 09 Dec 2024 18:18:00 GMT</pubDate>
    <dc:creator>donfawcett</dc:creator>
    <dc:date>2024-12-09T18:18:00Z</dc:date>
    <item>
      <title>Count the number of rows selected in a table visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/3387667#M127670</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a table visual that is used to filter two other visuals. I would like the two other visuals to show data only when a single row is selected from the main table. I tried using DISTINCTCOUNT but it returns the total number of rows and not only the ones selected. I also tried SELECTEDVALUE and ISFILTERED but it returns BLANK and FALSE whatever is selected in the table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't want to use a slicer because I need to let the users sort the table by the column of their choice to find the application for which they want to see the details which is not possible with a slicer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Any idea how I can achieve this? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 15:18:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/3387667#M127670</guid>
      <dc:creator>DesaulnM</dc:creator>
      <dc:date>2023-08-18T15:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of rows selected in a table visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/3388690#M127724</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="524936" data-lia-user-login="DesaulnM" class="lia-mention lia-mention-user"&gt;DesaulnM&lt;/a&gt;&amp;nbsp;to count rows simple use COUNTROWS&lt;/P&gt;&lt;P&gt;COUNTROWS([&amp;lt;table&amp;gt;])&lt;/P&gt;&lt;P&gt;[&amp;lt;table&amp;gt;] replace where your Application ID column is located. Put this measure into card visual.&lt;/P&gt;&lt;P&gt;Did I answer correctly? Kudos appreciate / accept solution.&lt;/P&gt;</description>
      <pubDate>Sun, 20 Aug 2023 10:58:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/3388690#M127724</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-08-20T10:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of rows selected in a table visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/3390294#M127810</link>
      <description>&lt;P&gt;Unfortunately, the count stays the same when I select a row in the table visual. I would like the count to be 1 when only 1 row is selected. I guess it's not possible to count the rows selected directly in the table visual.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 13:33:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/3390294#M127810</guid>
      <dc:creator>DesaulnM</dc:creator>
      <dc:date>2023-08-21T13:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of rows selected in a table visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/3390428#M127817</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="524936" data-lia-user-login="DesaulnM" class="lia-mention lia-mention-user"&gt;DesaulnM&lt;/a&gt;&amp;nbsp;"it depends" what is your canvas interaction. Usually, it in table you have Application ID and select some of them, in other visual on same canvas this measure should be recalculated in manner to count number of rows in that table.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 14:23:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/3390428#M127817</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-08-21T14:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of rows selected in a table visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/3390976#M127833</link>
      <description>&lt;P&gt;For those interested, I was able to do it with a calculated table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 20:05:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/3390976#M127833</guid>
      <dc:creator>DesaulnM</dc:creator>
      <dc:date>2023-08-21T20:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of rows selected in a table visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/4320245#M171519</link>
      <description>&lt;P&gt;Hi Desauln - I have the exact same problem I am trying to work out.&amp;nbsp; Did you ever find a solution?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Dec 2024 18:18:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-rows-selected-in-a-table-visual/m-p/4320245#M171519</guid>
      <dc:creator>donfawcett</dc:creator>
      <dc:date>2024-12-09T18:18:00Z</dc:date>
    </item>
  </channel>
</rss>

