<?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 Slicer -10 to 10 but not considering 0 in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2695580#M81314</link>
    <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is posible to filter by a slicer values from -10 to 10 but not considering cero values?&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Aug 2022 14:43:51 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-08-11T14:43:51Z</dc:date>
    <item>
      <title>Slicer -10 to 10 but not considering 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2695580#M81314</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is posible to filter by a slicer values from -10 to 10 but not considering cero values?&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 14:43:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2695580#M81314</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-11T14:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer -10 to 10 but not considering 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2695654#M81319</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Create a table without 0 and try that as a filter&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;filter(generateseries(-10,10,1),[value]&amp;lt;&amp;gt;0)&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 15:15:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2695654#M81319</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-08-11T15:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer -10 to 10 but not considering 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2697370#M81466</link>
      <description>&lt;P&gt;Im going to try this. ty for your answer.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 12:40:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2697370#M81466</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-12T12:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer -10 to 10 but not considering 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2697549#M81479</link>
      <description>&lt;P&gt;when i let know the filter which measure im using to filter?&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;Slicer is showing me 10&amp;gt;Elasticidad&amp;gt;-10.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For trying to exclude zero values in Elasticidad i create another measure called Measure filter:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure Filter = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Var MinValue = MIN(TablitaSlicer[Value])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Var MaxValue = MAX(TablitaSlicer[Value])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Var CurrentVal = [Elasticidad]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(CurrentVal&amp;gt;=MinValue &amp;amp;&amp;amp; CurrentVal&amp;lt;=MaxValue &amp;amp;&amp;amp; CurrentVal&amp;lt;&amp;gt;0 ,1,0)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TablitaSlicer is a calculated table with values from -10 to 10 excluding zero:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 12 Aug 2022 14:04:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2697549#M81479</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-12T14:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer -10 to 10 but not considering 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2697559#M81481</link>
      <description>&lt;P&gt;The last step i need is use my measure "Measure filter" to only show value 1 in my table, but i think slicer has priority over that condition and for that reason, although im trying to use Measure filter equials to 1 in objects filter pane my result had not been succesfull.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 14:10:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2697559#M81481</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-12T14:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Slicer -10 to 10 but not considering 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2705340#M82017</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please modify the measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure Filter =
Var MinValue = MINX(ALL(TABLE),TablitaSlicer[Value])
Var MaxValue = MAXX(ALL(TABLE),TablitaSlicer[Value])
Var CurrentVal = [Elasticidad]
RETURN
IF(CurrentVal&amp;gt;=MinValue &amp;amp;&amp;amp; CurrentVal&amp;lt;=MaxValue &amp;amp;&amp;amp; CurrentVal&amp;lt;&amp;gt;0 ,1,0)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I have misunderstood your meaning, please provide more details about your desired output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;Community Support Team _ Polly&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2022 06:58:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Slicer-10-to-10-but-not-considering-0/m-p/2705340#M82017</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-17T06:58:03Z</dc:date>
    </item>
  </channel>
</rss>

