<?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: percent  from total - remove slicers in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3055350#M105375</link>
    <description>&lt;P&gt;Fine, have you tried to change the nominator as suggested?&lt;/P&gt;</description>
    <pubDate>Wed, 01 Feb 2023 14:05:30 GMT</pubDate>
    <dc:creator>olgad</dc:creator>
    <dc:date>2023-02-01T14:05:30Z</dc:date>
    <item>
      <title>percent  from total - remove slicers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3052749#M105205</link>
      <description>&lt;P&gt;hi!&lt;/P&gt;&lt;P&gt;I want to build a DAX measure that calculate % of the total quantity&lt;/P&gt;&lt;P&gt;in this report, I have slicers of date, territory, and product category(will be single select).&lt;/P&gt;&lt;P&gt;every time I pick one category&amp;nbsp; I want to get the percent from total:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;for example, if I pick CSD I want to get 85% -&amp;nbsp; 2.2M / 2.6 M&lt;/P&gt;&lt;P&gt;important thing- I want that the date slicer will affect the measure, but if I pick another territory I want that the answer won't change.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;model looks like :&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2023 13:33:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3052749#M105205</guid>
      <dc:creator>sapirmarko</dc:creator>
      <dc:date>2023-01-31T13:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: percent  from total - remove slicers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3052763#M105207</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;%=DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;([Quantity Principal],&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Calculate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Quantity Principal]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;All&lt;/SPAN&gt;&lt;SPAN&gt;(WHS[TerritoryName]&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;BR /&gt;You need All to remove the filter from Territory&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 31 Jan 2023 13:42:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3052763#M105207</guid>
      <dc:creator>olgad</dc:creator>
      <dc:date>2023-01-31T13:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: percent  from total - remove slicers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3052812#M105210</link>
      <description>&lt;P&gt;If we break it down into factors, then I calculate the denominator in the following way:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Quantity - Principal],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;KEEPFILTERS(Sale_Out[paid_date]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ALL(Product1[category_name]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ALL(Wholesalers[territory_name]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;when I filter the category_name the answer doesn't change -&amp;nbsp; that good&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;when I filter the paid_datethe answer change -&amp;nbsp; that good&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;STRONG&gt;but&amp;nbsp;&lt;/STRONG&gt;when I filter the territory_namethe answer change -&amp;nbsp; &lt;STRONG&gt;that not good&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 31 Jan 2023 14:00:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3052812#M105210</guid>
      <dc:creator>sapirmarko</dc:creator>
      <dc:date>2023-01-31T14:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: percent  from total - remove slicers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3052974#M105220</link>
      <description>&lt;P&gt;It changes because the nominator changes too.&lt;BR /&gt;that shall be your nominator&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;Calculate&lt;/SPAN&gt;&lt;SPAN&gt;(Sales[Sales], ALL(Wholesalers[territory_name])&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;Not sure what you want to achieve, but if you dont want the slicer to affect that visual at all you can simply set edit interactions to none.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 31 Jan 2023 14:48:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3052974#M105220</guid>
      <dc:creator>olgad</dc:creator>
      <dc:date>2023-01-31T14:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: percent  from total - remove slicers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3055101#M105356</link>
      <description>&lt;P&gt;I need to get the total sales that only the date slicer will affect about this measure, I can't&amp;nbsp;&lt;SPAN&gt;dit interactions to none because it's part od another measure that need use with the other slicers&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 12:08:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3055101#M105356</guid>
      <dc:creator>sapirmarko</dc:creator>
      <dc:date>2023-02-01T12:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: percent  from total - remove slicers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3055350#M105375</link>
      <description>&lt;P&gt;Fine, have you tried to change the nominator as suggested?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 14:05:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/percent-from-total-remove-slicers/m-p/3055350#M105375</guid>
      <dc:creator>olgad</dc:creator>
      <dc:date>2023-02-01T14:05:30Z</dc:date>
    </item>
  </channel>
</rss>

