<?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 DAX filer to show more than 10 rows in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/760450#M3175</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to make a DAX expression to use&amp;nbsp;DAX filer to show more than 10 rows?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DEFINE MEASURE SCHOOL[OrdersMeasure] = COUNTROWS(ORDERS)&amp;gt;10&lt;BR /&gt;EVALUATE&lt;BR /&gt;ROW("Column1",SCHOOL[OrdersMeasure] )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I use True and False here? If less than 10 rows print a message and if more than 10 show all rows.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 07 Aug 2019 13:26:51 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-08-07T13:26:51Z</dc:date>
    <item>
      <title>DAX filer to show more than 10 rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/760450#M3175</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to make a DAX expression to use&amp;nbsp;DAX filer to show more than 10 rows?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DEFINE MEASURE SCHOOL[OrdersMeasure] = COUNTROWS(ORDERS)&amp;gt;10&lt;BR /&gt;EVALUATE&lt;BR /&gt;ROW("Column1",SCHOOL[OrdersMeasure] )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I use True and False here? If less than 10 rows print a message and if more than 10 show all rows.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2019 13:26:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/760450#M3175</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-07T13:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filer to show more than 10 rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/763488#M3301</link>
      <description>&lt;P&gt;I'm not sure what you try to achieve, can you elaborate?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general - measure can only return a scalar value, so it will never return 10 rows. It could return concatenated rows, e.g. by using CONCATENATEX but then you basically convert a table to scalar. Currently yur measure returns TRUE/FALSE depending on the number of rows in the ORDERS table - is that what you want it to return?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;IF can also only return a scalar (not a table), so I don't think it's applicable here&lt;BR /&gt;&lt;BR /&gt;do you want to create a model, or to query the model by writing custom queries? If you use PowerBI as UI for your users then there is no need for that (unless you want to create calculated tables)&lt;/P&gt;</description>
      <pubDate>Sun, 11 Aug 2019 04:35:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/763488#M3301</guid>
      <dc:creator>Stachu</dc:creator>
      <dc:date>2019-08-11T04:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filer to show more than 10 rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/764004#M3315</link>
      <description>&lt;P&gt;Mate, remember that visuals HIDE ROWS where all the measures are BLANK. This should give you enough information about how to show the rows you want... If you still see rows where all the measures are BLANK, then you should uncheck the option somewhere in the visual that enables this behaviour.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;Darek&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2019 09:24:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/764004#M3315</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-12T09:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filer to show more than 10 rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/764163#M3324</link>
      <description>&lt;P&gt;Thank you for your reply. I came to same conculsion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;IF can also only return a scalar (not a table), so I don't think it's applicable here&lt;/PRE&gt;&lt;P&gt;I using business suppression rules on database level now so if some business rule is not met it displays a custom message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2019 12:16:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/764163#M3324</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-12T12:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filer to show more than 10 rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/764165#M3325</link>
      <description>&lt;P&gt;Thank you for your reply! I got a new requirement to also add custom messages at all levels, database or PowerBI, so I just went with applying the business rules at database level. Thanks again!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2019 12:24:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filer-to-show-more-than-10-rows/m-p/764165#M3325</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-12T12:24:05Z</dc:date>
    </item>
  </channel>
</rss>

