<?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: Number Slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-Slicer/m-p/3173989#M114511</link>
    <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="413537" data-lia-user-login="Schifo78" class="lia-mention lia-mention-user"&gt;Schifo78&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not sure if i fully get you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;supposing you have two tables like:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;they are not related with any table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try to plot slicers and a table visual with necessary columns and a measure like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure = 
IF(
    MAX(TableName[MIN])&amp;lt;=MAX(MinSlicer[Value])
        &amp;amp;&amp;amp;MAX(TableName[MAX])&amp;gt;=MIN(MaxSlicer[Value]),
    TRUE, FALSE
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it worked like:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Apr 2023 13:50:44 GMT</pubDate>
    <dc:creator>FreemanZ</dc:creator>
    <dc:date>2023-04-05T13:50:44Z</dc:date>
    <item>
      <title>Number Slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-Slicer/m-p/3173740#M114492</link>
      <description>&lt;P&gt;Hi I have a table set up as follows (example numbers):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Supplier&lt;/TD&gt;&lt;TD&gt;Min&lt;/TD&gt;&lt;TD&gt;Max&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Supplier A&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;5000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Supplier B&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Supplier C&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;2000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Supplier D&lt;/TD&gt;&lt;TD&gt;1000&lt;/TD&gt;&lt;TD&gt;10000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Supplier E&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;6000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Min value has a relationship to a generateseries table of numbers incremented by 1. I am using that value in the slicer two sided slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to create a measure that I can use the slicer to filter out suppliers if the minimum order level they supply is higher than the selected value (so the minimum order is above what I want) and the maximum level they can supply is less than the selected value (so they can't do the volume required).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So for example if I wanted a supplier without a minimum order threshold e.g. 0&amp;nbsp; but could satisfy orders up to 5500 then the measure would only return a true against Supplier E. If I then decided to remove the lower bound then the filter would bring back Supplier D and E etc.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried various configuration for the dax measure for this but can't acheive the result I need, anyone have any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 12:05:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-Slicer/m-p/3173740#M114492</guid>
      <dc:creator>Schifo78</dc:creator>
      <dc:date>2023-04-05T12:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Number Slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-Slicer/m-p/3173989#M114511</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="413537" data-lia-user-login="Schifo78" class="lia-mention lia-mention-user"&gt;Schifo78&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not sure if i fully get you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;supposing you have two tables like:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;they are not related with any table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try to plot slicers and a table visual with necessary columns and a measure like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure = 
IF(
    MAX(TableName[MIN])&amp;lt;=MAX(MinSlicer[Value])
        &amp;amp;&amp;amp;MAX(TableName[MAX])&amp;gt;=MIN(MaxSlicer[Value]),
    TRUE, FALSE
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it worked like:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 13:50:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-Slicer/m-p/3173989#M114511</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2023-04-05T13:50:44Z</dc:date>
    </item>
  </channel>
</rss>

