<?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 How do I make the percentage not be added to the total? in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/How-do-I-make-the-percentage-not-be-added-to-the-total/m-p/3194342#M1076216</link>
    <description>&lt;P&gt;I have the two grapyhs below, I needed to build a seller ranking with the highest amount of unavailability by percentage&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;but instead of showing the individual % of each seller, it ends up adding that % to the total of all sellers, instead of just showing the % of unavailability of itself (for example, instead of keeping showing the 87% in the ranking, it displays 20.15%)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;how do i fix that?&lt;/P&gt;</description>
    <pubDate>Tue, 18 Apr 2023 18:59:42 GMT</pubDate>
    <dc:creator>neardllx</dc:creator>
    <dc:date>2023-04-18T18:59:42Z</dc:date>
    <item>
      <title>How do I make the percentage not be added to the total?</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-do-I-make-the-percentage-not-be-added-to-the-total/m-p/3194342#M1076216</link>
      <description>&lt;P&gt;I have the two grapyhs below, I needed to build a seller ranking with the highest amount of unavailability by percentage&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;but instead of showing the individual % of each seller, it ends up adding that % to the total of all sellers, instead of just showing the % of unavailability of itself (for example, instead of keeping showing the 87% in the ranking, it displays 20.15%)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;how do i fix that?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 18:59:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-do-I-make-the-percentage-not-be-added-to-the-total/m-p/3194342#M1076216</guid>
      <dc:creator>neardllx</dc:creator>
      <dc:date>2023-04-18T18:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the percentage not be added to the total?</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-do-I-make-the-percentage-not-be-added-to-the-total/m-p/3196936#M1076896</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="547980" data-lia-user-login="neardllx" class="lia-mention lia-mention-user"&gt;neardllx&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, here are my steps you can follow as a solution.&lt;/P&gt;
&lt;P&gt;(1) This is my test data.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;(2) We can create two measures.&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;unavailability% = 
var _total=CALCULATE(SUM('Table'[value]),FILTER(ALL('Table'),'Table'[seller]=MAX('Table'[seller])))
var _un=CALCULATE(MAX('Table'[value]),FILTER(ALL('Table'),'Table'[seller]=MAX('Table'[seller]) &amp;amp;&amp;amp; 'Table'[type]="unavailability"))
return 
DIVIDE(_un,_total,0)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;availability% = 
var _total=CALCULATE(SUM('Table'[value]),FILTER(ALL('Table'),'Table'[seller]=MAX('Table'[seller])))
var _a=CALCULATE(MAX('Table'[value]),FILTER(ALL('Table'),'Table'[seller]=MAX('Table'[seller]) &amp;amp;&amp;amp; 'Table'[type]="availability"))
return 
DIVIDE(_a,_total,0)&lt;/LI-CODE&gt;
&lt;P&gt;(3) Then the result is as follows.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the above one can't help you get the desired result, please provide some&amp;nbsp;&lt;STRONG&gt;sample data&lt;/STRONG&gt;&amp;nbsp;in your tables (&lt;STRONG&gt;exclude&amp;nbsp;sensitive&amp;nbsp;data&lt;/STRONG&gt;) with&amp;nbsp;&lt;STRONG&gt;Text&lt;/STRONG&gt;&amp;nbsp;format and your&amp;nbsp;&lt;STRONG&gt;expected result&lt;/STRONG&gt;&amp;nbsp;with backend logic and special examples.&amp;nbsp;&lt;STRONG&gt;It is better&lt;/STRONG&gt;&amp;nbsp;if you can share a&amp;nbsp;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;pbix file.&amp;nbsp;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 03:29:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-do-I-make-the-percentage-not-be-added-to-the-total/m-p/3196936#M1076896</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T03:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make the percentage not be added to the total?</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-do-I-make-the-percentage-not-be-added-to-the-total/m-p/3197055#M1076927</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Share some data, explain the question and show the expected result in a simple Table format.&amp;nbsp; Once we get the correct results in a Table, we can always build a visual from it.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 02:54:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-do-I-make-the-percentage-not-be-added-to-the-total/m-p/3197055#M1076927</guid>
      <dc:creator>Ashish_Mathur</dc:creator>
      <dc:date>2023-04-20T02:54:06Z</dc:date>
    </item>
  </channel>
</rss>

