<?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: Help with static Measures in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-static-Measures/m-p/539528#M16666</link>
    <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/51665"&gt;@alora101&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just change it as follows.&lt;/P&gt;
&lt;PRE&gt;Measure =
DIVIDE (
    SUM ( Table1[unit price] ),
    CALCULATE ( SUM ( Table1[unit price] ), ALL ( Table1[Product] ) )
)
&lt;/PRE&gt;</description>
    <pubDate>Thu, 11 Oct 2018 07:55:30 GMT</pubDate>
    <dc:creator>v-chuncz-msft</dc:creator>
    <dc:date>2018-10-11T07:55:30Z</dc:date>
    <item>
      <title>Help with static Measures</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-static-Measures/m-p/533826#M16391</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I dont know how to explain my situation but i will try to make it simple.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a measure called gross amount which is the total of unit price&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;gross amout = sum(unit price)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue i have is , i want to make this gross amount static ( when i apply filters it wont affect it because i want to use it to do other calulation for example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Product&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gross amount&lt;/P&gt;&lt;P&gt;A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;300&lt;/P&gt;&lt;P&gt;B&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 200&lt;/P&gt;&lt;P&gt;C&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;400&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TOTAL&amp;nbsp; 900&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, if i apply filter on product A and B which is 500, i want to be able to get the&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. percetage of 500/900 ,&lt;/P&gt;&lt;P&gt;2. 900- 500&amp;nbsp; etc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;just to make the grand total to ignore the filter but be able to use the filter total against the grand total.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any help will be much appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Oct 2018 15:34:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-static-Measures/m-p/533826#M16391</guid>
      <dc:creator>alora101</dc:creator>
      <dc:date>2018-10-04T15:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help with static Measures</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-static-Measures/m-p/535965#M16513</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/51665"&gt;@alora101&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may simply add&amp;nbsp;&lt;A title="ALL Function" href="https://msdn.microsoft.com/en-us/query-bi/dax/all-function-dax" target="_blank"&gt;ALL Function&lt;/A&gt;.&lt;/P&gt;
&lt;PRE&gt;Measure =
CALCULATE ( SUM ( Table1[unit price] ), ALL ( Table1[Product] ) )
&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Oct 2018 08:11:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-static-Measures/m-p/535965#M16513</guid>
      <dc:creator>v-chuncz-msft</dc:creator>
      <dc:date>2018-10-08T08:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Help with static Measures</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-static-Measures/m-p/538754#M16646</link>
      <description>&lt;P&gt;HI Sam,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your solution however, if i try to do the sum of sum of the filter total against the all product i dont get to see the result rather the filter result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for example.. when i appied the ALL to the calculation i get the desire result which is&amp;nbsp; 500 but when filter the product and the sum of that is 300 , i want to be able to divide or subtract 300 from 500.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this explanation helps and thanks very much for this info.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 14:36:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-static-Measures/m-p/538754#M16646</guid>
      <dc:creator>alora101</dc:creator>
      <dc:date>2018-10-10T14:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Help with static Measures</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-static-Measures/m-p/539528#M16666</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/51665"&gt;@alora101&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just change it as follows.&lt;/P&gt;
&lt;PRE&gt;Measure =
DIVIDE (
    SUM ( Table1[unit price] ),
    CALCULATE ( SUM ( Table1[unit price] ), ALL ( Table1[Product] ) )
)
&lt;/PRE&gt;</description>
      <pubDate>Thu, 11 Oct 2018 07:55:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-static-Measures/m-p/539528#M16666</guid>
      <dc:creator>v-chuncz-msft</dc:creator>
      <dc:date>2018-10-11T07:55:30Z</dc:date>
    </item>
  </channel>
</rss>

