<?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: Slicer out of measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/918570#M8976</link>
    <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="191221" data-lia-user-login="akfir" class="lia-mention lia-mention-user"&gt;akfir&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;have you been able to solve the problem with the replies given?&lt;BR /&gt;&lt;BR /&gt;If so, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)&lt;BR /&gt;Kudoes are nice too&lt;BR /&gt;&lt;BR /&gt;All the best&lt;BR /&gt;&lt;BR /&gt;Jimmy&lt;/P&gt;</description>
    <pubDate>Sat, 01 Feb 2020 12:00:36 GMT</pubDate>
    <dc:creator>Jimmy801</dc:creator>
    <dc:date>2020-02-01T12:00:36Z</dc:date>
    <item>
      <title>Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/900892#M8231</link>
      <description>&lt;P&gt;i created a measure that calculates number of orders per customer.&lt;BR /&gt;i wish to use it as a slicer, so i can choose for example "30", and i will get in the near table - a list of the customers that have 30 orders.&lt;/P&gt;&lt;P&gt;important to mention that number of orders is a limited range of values (0-51)&lt;BR /&gt;&lt;BR /&gt;how can i do that?&lt;BR /&gt;&lt;BR /&gt;thanks in advance,&lt;BR /&gt;Amit&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2020 14:29:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/900892#M8231</guid>
      <dc:creator>akfir</dc:creator>
      <dc:date>2020-01-15T14:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/901275#M8243</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="191221" data-lia-user-login="akfir" class="lia-mention lia-mention-user"&gt;akfir&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;a measure returns always a scalar value using the filter context.&lt;/P&gt;&lt;P&gt;To accomplish your need, don't add a measure, but a new column to your customer table and filter this new column with an slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jimmy&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2020 21:54:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/901275#M8243</guid>
      <dc:creator>Jimmy801</dc:creator>
      <dc:date>2020-01-15T21:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/901488#M8247</link>
      <description>&lt;P&gt;Create A dummy table means table which is not in relationship with any other table.&lt;/P&gt;&lt;P&gt;orders_tab=generateseries(0,51)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then create measure on your previous orders measure.&lt;/P&gt;&lt;P&gt;Filter=if(orders=selectedvalue(orders_tab[column]),1,0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then add it to visual level filter and set it to 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Else simply you can create calculated column and add it into slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or provide self servie by adding measure into visual level filter and user can filter that measure from by his choice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Pravin Wattamwar.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.linkedin.com/in/pravin-p-wattamwar/" target="_blank"&gt;https://www.linkedin.com/in/pravin-p-wattamwar/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If I resolve your problem mark it as solution and give kudos.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 03:08:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/901488#M8247</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-16T03:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/901968#M8264</link>
      <description>&lt;P&gt;Thanks for your answer, but it does not work out for me. maybe im doing something wrong.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 10:00:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/901968#M8264</guid>
      <dc:creator>akfir</dc:creator>
      <dc:date>2020-01-16T10:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/901985#M8267</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="191221" data-lia-user-login="akfir" class="lia-mention lia-mention-user"&gt;akfir&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you have to go to your customer-table and add there the calculation of what you want to achieve - like a COUNTROWS of the order-table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your visualization you can then add a slicer, using this new column as base.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope its clearer now&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the best&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jimmy&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 10:10:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/901985#M8267</guid>
      <dc:creator>Jimmy801</dc:creator>
      <dc:date>2020-01-16T10:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904322#M8420</link>
      <description>&lt;P&gt;Thanks for your reply.&lt;BR /&gt;i have created this dummy table, but yet misunderstood the next step of connecting my 0-51 values column to the original measure of orders.&lt;BR /&gt;just to clarify myself - my goal is to have a slicer so i can use a "greater than or equal to" measure of the 0-51 values, for example if i pick greater than 40, then i will get the list of customers which have more than 40 orders.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jan 2020 19:45:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904322#M8420</guid>
      <dc:creator>akfir</dc:creator>
      <dc:date>2020-01-19T19:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904331#M8422</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="191221" data-lia-user-login="akfir" class="lia-mention lia-mention-user"&gt;akfir&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've never talked about a dummy table.&lt;/P&gt;&lt;P&gt;Just use your customer-table and add a custom columns with a formula like this COUNTROWS(RELATEDTABLE(yoursalesordertable))&lt;/P&gt;&lt;P&gt;This will add a the number of rows in the sales order table for every customer. For this new row you add a slicer in your visual and everything should be fine&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jimmy&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jan 2020 20:02:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904331#M8422</guid>
      <dc:creator>Jimmy801</dc:creator>
      <dc:date>2020-01-19T20:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904334#M8424</link>
      <description>&lt;P&gt;it is not the right solution because my customer table has a lot than one row per customer (dates etc.)&lt;BR /&gt;thats why countrows does not fit in this case.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jan 2020 20:08:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904334#M8424</guid>
      <dc:creator>akfir</dc:creator>
      <dc:date>2020-01-19T20:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904363#M8426</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="191221" data-lia-user-login="akfir" class="lia-mention lia-mention-user"&gt;akfir&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so you have no relationship between customer and sales order I suppose. Due to multiple values in both tables.&lt;/P&gt;&lt;P&gt;then create a new table like this on, to create a distinct value for your customer&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;CustomerDistinct = 
     SUMMARIZE(
        Customer;
        Customer[Customer]
        )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Connect this new table to your sales and customer table and add a new column like this&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;CountSales = COUNTROWS(RELATEDTABLE(Sales))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt; or &lt;STRONG&gt;solves &lt;/STRONG&gt;your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)&lt;BR /&gt;Kudoes are nice too&lt;BR /&gt;&lt;BR /&gt;Have fun&lt;BR /&gt;&lt;BR /&gt;Jimmy&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jan 2020 21:28:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904363#M8426</guid>
      <dc:creator>Jimmy801</dc:creator>
      <dc:date>2020-01-19T21:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904701#M8438</link>
      <description>&lt;P&gt;Thanks again for your quick reply.&lt;BR /&gt;&lt;BR /&gt;i have only one data table in my model - containing customers and their orders as well, by month. each order has several products.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 07:02:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904701#M8438</guid>
      <dc:creator>akfir</dc:creator>
      <dc:date>2020-01-20T07:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904727#M8442</link>
      <description>&lt;P&gt;Hello &amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="191221" data-lia-user-login="akfir" class="lia-mention lia-mention-user"&gt;akfir&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then create a summarized table with only customer and another one with customer and sales order number, connect them all and apply the new column as described&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jimmy&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 07:16:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904727#M8442</guid>
      <dc:creator>Jimmy801</dc:creator>
      <dc:date>2020-01-20T07:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904796#M8445</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="191221" data-lia-user-login="akfir" class="lia-mention lia-mention-user"&gt;akfir&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried my solution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What error you are getting?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First create table using generateseries.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then use that column in slicers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then write below measure on old table.&lt;/P&gt;&lt;P&gt;Filter=sumx(Old_table,if(Old_table[Orders]=selectedvalue(dummy_table[Slicer]),1,0))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add this measure to your visual level filter and set it to not 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 08:08:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/904796#M8445</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-20T08:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905168#M8467</link>
      <description>&lt;P&gt;Yes ive tried.&lt;BR /&gt;after long time of processing it came with an error says "Visual has exceeded the available resources".&lt;BR /&gt;very dissapointing.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 12:07:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905168#M8467</guid>
      <dc:creator>akfir</dc:creator>
      <dc:date>2020-01-20T12:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905179#M8468</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Table 2 = GENERATESERIES(0,51)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure 2 = SUM('Table'[Price])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Filter&amp;nbsp; = IF([Measure 2]=SELECTEDVALUE('Table 2'[Value]),1,0)&lt;img /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 20 Jan 2020 12:21:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905179#M8468</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-20T12:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905194#M8470</link>
      <description>&lt;P&gt;what is PRICE in your model?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 12:35:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905194#M8470</guid>
      <dc:creator>akfir</dc:creator>
      <dc:date>2020-01-20T12:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905224#M8471</link>
      <description>&lt;P&gt;instead of measure 2 put your measure which you have calculated as count of orders.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 12:58:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905224#M8471</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-20T12:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905277#M8476</link>
      <description>&lt;P&gt;still does not work.&lt;BR /&gt;&lt;BR /&gt;let me share with you my measures (which work fine til now):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sales = sum(Sales[Sales])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;Assortment1 = CALCULATE(DISTINCTCOUNT(Sales[SKU]),FILTER(Sales,Sales[Sales]&amp;gt;0))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;SPAN&gt;Assortment3 = CALCULATE(MeasuresTable[Assortment1],DATESINPERIOD(Sales[Date],max(Sales[Date]),-3,MONTH))&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;"SKU" is the product and in my model i wish to count the number of products a customer purchased in the last 3 months (ASSORTMENT3).&lt;BR /&gt;My output is a simple table visual which shows the list of customers with their ASSORTMENT value (0-51).&lt;BR /&gt;I wish to add a slicer that filters the list according to their ASSORTMENT value - for example greater than 40.&lt;BR /&gt;&lt;BR /&gt;im helpless so far!!&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 20 Jan 2020 13:55:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905277#M8476</guid>
      <dc:creator>akfir</dc:creator>
      <dc:date>2020-01-20T13:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905283#M8477</link>
      <description>&lt;P&gt;can you share your PBIX?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 14:04:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905283#M8477</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-20T14:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905296#M8478</link>
      <description>&lt;P&gt;sorry i cant. it has a sensetive data.&lt;BR /&gt;but i think what i shared with you suppose to be enough.&lt;BR /&gt;as i mentioned before, my rough data contains customers with all their products they purchased on monthly basis.&lt;BR /&gt;for example customer x bought 10 of product A on December and 20 of product B on January - each one is a row.&lt;BR /&gt;&lt;BR /&gt;hope it helped...&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 14:11:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905296#M8478</guid>
      <dc:creator>akfir</dc:creator>
      <dc:date>2020-01-20T14:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer out of measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905300#M8479</link>
      <description>&lt;P&gt;whatever solution i have provided is working fine.&lt;/P&gt;&lt;P&gt;In our project most of time we followed this technic only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the error you got "out of resources" something.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think may be there is column which is summerizing.&lt;/P&gt;&lt;P&gt;Can you check all integer columns are set to "Don't summerize"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 14:16:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-out-of-measure/m-p/905300#M8479</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-20T14:16:55Z</dc:date>
    </item>
  </channel>
</rss>

