<?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: How to plot pie chart correctly without creating additional column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434273#M130256</link>
    <description>&lt;P&gt;Thank you for attention&lt;/P&gt;</description>
    <pubDate>Sat, 16 Sep 2023 20:19:33 GMT</pubDate>
    <dc:creator>Bidu</dc:creator>
    <dc:date>2023-09-16T20:19:33Z</dc:date>
    <item>
      <title>How to plot pie chart correctly without creating additional column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3433909#M130233</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I have one column in my Table with integer values, I want report in a pie chart values &amp;gt; 0 and values == 0, and its percentage, but I dont want to create a additional column with values "YES":: &amp;gt;0 and "NOT":: == 0 for it. Is it possible? I'm newbie on dax (and I think to keep only essential information on Tables, maybe I'm wrong).&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2023 10:07:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3433909#M130233</guid>
      <dc:creator>Bidu</dc:creator>
      <dc:date>2023-09-16T10:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot pie chart correctly without creating additional column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3433954#M130236</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="611749" data-lia-user-login="Bidu" class="lia-mention lia-mention-user"&gt;Bidu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you may create a disconnected single column, two rows table. Inset table manually, rename it like "CetegoryFilter, rename the column "Category" and inter "Yes", "No" in the first two rows.&amp;nbsp;&lt;BR /&gt;place CategoryFilter[Category] in the pie chart along with the following measure&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IF (&lt;/P&gt;
&lt;P&gt;SELECTEDVALUE ( CategoryFilter[Category] ) = "Yes",&lt;/P&gt;
&lt;P&gt;COUNTROWS (&lt;/P&gt;
&lt;P&gt;FILTER (&amp;nbsp;&lt;/P&gt;
&lt;P&gt;'Table',&lt;/P&gt;
&lt;P&gt;'Table'[Value] = 0&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;),&lt;/P&gt;
&lt;P&gt;COUNTROWS (&lt;/P&gt;
&lt;P&gt;FILTER (&amp;nbsp;&lt;/P&gt;
&lt;P&gt;'Table',&lt;/P&gt;
&lt;P&gt;'Table'[Value] &amp;gt; 0&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2023 11:36:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3433954#M130236</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-09-16T11:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot pie chart correctly without creating additional column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434200#M130249</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt; nice! Thanks.&lt;BR /&gt;Now I wanna know about your experience, which solution is more elegant to make this? Am I right about keep only essential information on Table. My intension is make a clear solution, without being a prolixic model&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2023 18:22:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434200#M130249</guid>
      <dc:creator>Bidu</dc:creator>
      <dc:date>2023-09-16T18:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot pie chart correctly without creating additional column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434206#M130250</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="611749" data-lia-user-login="Bidu" class="lia-mention lia-mention-user"&gt;Bidu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's say your data is a couple of million rows. If you add a column then you're actually adding 2 million cells to your data model. The other solution requires adding 2 cells only. I don't think it is a hard question to answer.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2023 18:26:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434206#M130250</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-09-16T18:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot pie chart correctly without creating additional column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434224#M130253</link>
      <description>&lt;P&gt;For create the Table and insert the two rows, do I this on Power Query?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2023 18:56:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434224#M130253</guid>
      <dc:creator>Bidu</dc:creator>
      <dc:date>2023-09-16T18:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot pie chart correctly without creating additional column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434257#M130255</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="611749" data-lia-user-login="Bidu" class="lia-mention lia-mention-user"&gt;Bidu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From home menu in power bi click on "inset data". The table will be automatically created in power query&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2023 19:22:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434257#M130255</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-09-16T19:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot pie chart correctly without creating additional column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434273#M130256</link>
      <description>&lt;P&gt;Thank you for attention&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2023 20:19:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-plot-pie-chart-correctly-without-creating-additional/m-p/3434273#M130256</guid>
      <dc:creator>Bidu</dc:creator>
      <dc:date>2023-09-16T20:19:33Z</dc:date>
    </item>
  </channel>
</rss>

