<?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: Keep Filter on Dax Measure and Allowing Other Slicers at the Same Time in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Keep-Filter-on-Dax-Measure-and-Allowing-Other-Slicers-at-the/m-p/4178880#M166036</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="289411" data-lia-user-login="tucahernandes" class="lia-mention lia-mention-user"&gt;tucahernandes&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would you be able to provide sample data or a pbix link (OneDrive, etc.)?&lt;/P&gt;</description>
    <pubDate>Thu, 26 Sep 2024 18:52:55 GMT</pubDate>
    <dc:creator>DataInsights</dc:creator>
    <dc:date>2024-09-26T18:52:55Z</dc:date>
    <item>
      <title>Keep Filter on Dax Measure and Allowing Other Slicers at the Same Time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Keep-Filter-on-Dax-Measure-and-Allowing-Other-Slicers-at-the/m-p/4178198#M166004</link>
      <description>&lt;P&gt;I need a measure which at the same time, when I select na owner of a store (field franqueado), it brings me the all amount of the region involved (field região).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If for instance, I select the owner "Peter" and he is from South region, the same should bring me the all amount of the South region&lt;/P&gt;&lt;P&gt;That's ok so far, I've made it with the measure below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;BR /&gt;[Qtd Vendida],&lt;BR /&gt;ALL(vw_pbicompras_lojas),&lt;BR /&gt;KEEPFILTERS ( vw_pbicompras_lojas[regiao] IN VALUES ( vw_pbicompras_lojas[regiao] )&lt;BR /&gt;))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem: the same measure should also consider the selection of the field clube presented on the same table. And this doesn't happen currently, because of the All on the measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What are the needed adjustments on the measure above, so that it could consider the slicers selections of the field clube?&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;&lt;P&gt;dssgasg&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 13:29:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Keep-Filter-on-Dax-Measure-and-Allowing-Other-Slicers-at-the/m-p/4178198#M166004</guid>
      <dc:creator>tucahernandes</dc:creator>
      <dc:date>2024-09-26T13:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Keep Filter on Dax Measure and Allowing Other Slicers at the Same Time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Keep-Filter-on-Dax-Measure-and-Allowing-Other-Slicers-at-the/m-p/4178225#M166005</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="289411" data-lia-user-login="tucahernandes" class="lia-mention lia-mention-user"&gt;tucahernandes&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can replace ALL with ALLSELECTED to keep external filters (e.g., slicers).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE (
    [Qtd Vendida],
    ALLSELECTED ( vw_pbicompras_lojas ),
    KEEPFILTERS ( VALUES ( vw_pbicompras_lojas[regiao] ) )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 13:45:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Keep-Filter-on-Dax-Measure-and-Allowing-Other-Slicers-at-the/m-p/4178225#M166005</guid>
      <dc:creator>DataInsights</dc:creator>
      <dc:date>2024-09-26T13:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Keep Filter on Dax Measure and Allowing Other Slicers at the Same Time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Keep-Filter-on-Dax-Measure-and-Allowing-Other-Slicers-at-the/m-p/4178296#M166008</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;It didn't work. With your measure, when I select "franqueado" on slicer, it brings me only the franqueado's value. And I need the all amount of the related region (field "região).&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 14:30:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Keep-Filter-on-Dax-Measure-and-Allowing-Other-Slicers-at-the/m-p/4178296#M166008</guid>
      <dc:creator>tucahernandes</dc:creator>
      <dc:date>2024-09-26T14:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Keep Filter on Dax Measure and Allowing Other Slicers at the Same Time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Keep-Filter-on-Dax-Measure-and-Allowing-Other-Slicers-at-the/m-p/4178880#M166036</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="289411" data-lia-user-login="tucahernandes" class="lia-mention lia-mention-user"&gt;tucahernandes&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would you be able to provide sample data or a pbix link (OneDrive, etc.)?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 18:52:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Keep-Filter-on-Dax-Measure-and-Allowing-Other-Slicers-at-the/m-p/4178880#M166036</guid>
      <dc:creator>DataInsights</dc:creator>
      <dc:date>2024-09-26T18:52:55Z</dc:date>
    </item>
  </channel>
</rss>

