<?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 Count Rows + greater than in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-greater-than/m-p/844069#M6471</link>
    <description>&lt;P&gt;Hi!&lt;BR /&gt;Looking for some guidance with simple DAX Calculation.I created one Measure to count rows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Measure = COUNTROWS(FullTable)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then on a matrix table I add the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lines:&lt;BR /&gt;Account Number&lt;BR /&gt;Transaction Number&lt;BR /&gt;Date of Transaction&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Values:&lt;BR /&gt;Current Value&lt;BR /&gt;Measure&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I want this table only to show "Account Numbers" that had more than 30 rows count. I just added a filter in the visual for measure field to show me "is greater than 30" but the table doesn't apply this filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Feel kind stupid since this sounds basic. But I fell this has something to do with those 2 extra lines I added (Transaction Number / Date of Transaction).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you guys help me?&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Barbara&lt;/P&gt;</description>
    <pubDate>Tue, 12 Nov 2019 20:53:38 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-11-12T20:53:38Z</dc:date>
    <item>
      <title>Count Rows + greater than</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-greater-than/m-p/844069#M6471</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;Looking for some guidance with simple DAX Calculation.I created one Measure to count rows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Measure = COUNTROWS(FullTable)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then on a matrix table I add the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lines:&lt;BR /&gt;Account Number&lt;BR /&gt;Transaction Number&lt;BR /&gt;Date of Transaction&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Values:&lt;BR /&gt;Current Value&lt;BR /&gt;Measure&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I want this table only to show "Account Numbers" that had more than 30 rows count. I just added a filter in the visual for measure field to show me "is greater than 30" but the table doesn't apply this filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Feel kind stupid since this sounds basic. But I fell this has something to do with those 2 extra lines I added (Transaction Number / Date of Transaction).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you guys help me?&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Barbara&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 20:53:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-greater-than/m-p/844069#M6471</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-12T20:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows + greater than</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-greater-than/m-p/844102#M6473</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There must be a better way to achieve this, but here you go.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;a. Create a new column in the table with value 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; New_&lt;SPAN&gt;Column = 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;b. Use the below measure to count the number of Accounts.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;Accts Cnt =&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;SUMX(SUMMARIZE('Blank Report','Blank Report'[Country],"ABC",CALCULATE(SUM('Blank Report'[Column]),ALLEXCEPT('Blank Report','Blank Report'[Country]))),[ABC])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Replace 'Blank Report' with you table name and Country with Accounts column.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;If it helps, mark it as a solution.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Kudos are good too.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 21:31:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-greater-than/m-p/844102#M6473</guid>
      <dc:creator>VasTg</dc:creator>
      <dc:date>2019-11-12T21:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows + greater than</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-greater-than/m-p/854354#M6777</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="182681" data-lia-user-login="VasTg" class="lia-mention lia-mention-user"&gt;VasTg&lt;/a&gt;, How are you? Me again. I had worked perfected before but now I only need to show the distint count for "Transaction Numbers" and then filter it. In this formula you gave me, how do I changed it? Thanks, Barbara&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 15:18:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-greater-than/m-p/854354#M6777</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-22T15:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: Count Rows + greater than</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-greater-than/m-p/854875#M6800</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am doing good. Thanks for asking.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you mind share a sample input and output data?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vas&lt;/P&gt;</description>
      <pubDate>Sat, 23 Nov 2019 23:48:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Rows-greater-than/m-p/854875#M6800</guid>
      <dc:creator>VasTg</dc:creator>
      <dc:date>2019-11-23T23:48:09Z</dc:date>
    </item>
  </channel>
</rss>

