<?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: PORTION OF A  WHOLE | PIE CHART in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3064815#M106071</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope your doing fine!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to thank you as well for taking your time to help me!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 06 Feb 2023 21:58:55 GMT</pubDate>
    <dc:creator>weakneee</dc:creator>
    <dc:date>2023-02-06T21:58:55Z</dc:date>
    <item>
      <title>PORTION OF A  WHOLE | PIE CHART</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3062355#M105891</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you're doing well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe that I have a quite simple doubt about representation in a pie chart.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to represent a portion of a whole in the chart, but, instead of display the difference, it is presenting the summing of the values.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 302 "MATRICULA" and 226 of them did "TREINAMENTO 1". In the chart is presented the summing of these values, treating as they're different, but the latter is inside of that. How can I treat the values as one, without summing?&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Feb 2023 16:24:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3062355#M105891</guid>
      <dc:creator>weakneee</dc:creator>
      <dc:date>2023-02-05T16:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: PORTION OF A  WHOLE | PIE CHART</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3062571#M105914</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="509903" data-lia-user-login="weakneee" class="lia-mention lia-mention-user"&gt;weakneee&lt;/a&gt;&amp;nbsp;, i think what youre asking for is if we can just put the "&lt;SPAN&gt;TREINAMENTO 1" measure related to "MATRICULA" as the max value and not sum it up, i honestly think its impossible BUT a workaround could be give,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;lets say&amp;nbsp;&lt;BR /&gt;count all =&amp;nbsp;&lt;SPAN&gt;MATRICULA&lt;/SPAN&gt;&lt;BR /&gt;count of = T&lt;SPAN&gt;REINAMENTO 1&lt;/SPAN&gt;&lt;BR /&gt;and extra = count all - count of&lt;BR /&gt;&lt;BR /&gt;now just change the color of "extra" to match your background and put the data label inside and choose color same as background too and just change label name of "extra" to space so it doesnt show in legend.&lt;BR /&gt;i hope this helps&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Feb 2023 23:43:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3062571#M105914</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-05T23:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: PORTION OF A  WHOLE | PIE CHART</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3062710#M105919</link>
      <description>&lt;P&gt;I agree with eliasayy's solution, below are some additional details but it's the same solution they've given.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assuming you have a 1:M relationship from Matriculas to Treinamentos, one solution is to add measures to calculate both portions of the visual:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;QTD. TREINAMENTO 1 = 
    CALCULATE(
        COUNTROWS(
            FILTER(
                RELATEDTABLE('Treinamentos de Janiero'),
                'Treinamentos de Janiero'[Treinamento - Nome] = "CNV"
        )
    )
)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;MATRICULAS = COUNTROWS(Matriculas)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;MATRICULAS WITH NO TREINAMENTO 1 = [MATRICULAS] - [QTD. TREINAMENTO 1]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add both [QTD. TREINAMENTO 1] and [MATRICULAS WITH NO TREINAMENTO 1] to the visual's Values fields&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;&lt;BR /&gt;Note that you will not be able to filter other visuals by selecting the two categories on this visual - if that's required, you'll need a more complex solution.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2023 02:10:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3062710#M105919</guid>
      <dc:creator>andrewpirie</dc:creator>
      <dc:date>2023-02-06T02:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: PORTION OF A  WHOLE | PIE CHART</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3064810#M106070</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="15308" data-lia-user-login="andrewpirie" class="lia-mention lia-mention-user"&gt;andrewpirie&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;Thank you so much! This is what I what wanted.&lt;BR /&gt;The other visuals I can work separately.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once again, thank you for taking your time to help me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2023 21:57:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3064810#M106070</guid>
      <dc:creator>weakneee</dc:creator>
      <dc:date>2023-02-06T21:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: PORTION OF A  WHOLE | PIE CHART</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3064815#M106071</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope your doing fine!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to thank you as well for taking your time to help me!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2023 21:58:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/PORTION-OF-A-WHOLE-PIE-CHART/m-p/3064815#M106071</guid>
      <dc:creator>weakneee</dc:creator>
      <dc:date>2023-02-06T21:58:55Z</dc:date>
    </item>
  </channel>
</rss>

