<?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: Summarize Data for Venn Diagram in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-Data-for-Venn-Diagram/m-p/2192840#M51297</link>
    <description>&lt;P&gt;I'm not seeing how the pivot would work? The Venn by MAQ requires the data to be in a specific format (see above) and does not do any aggregate summarization.&amp;nbsp; So, I couldn't have the link on my key in order to have a slicer applicable or be able to do a pivot on my category in order to get totals.&amp;nbsp; Does that make sense?&lt;/P&gt;</description>
    <pubDate>Tue, 16 Nov 2021 16:06:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-11-16T16:06:30Z</dc:date>
    <item>
      <title>Summarize Data for Venn Diagram</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-Data-for-Venn-Diagram/m-p/2190876#M51225</link>
      <description>&lt;P&gt;I'd like to be able to use the Venn Diagram by MAQ software.&amp;nbsp; However, it requires the data to be summarized into a pivot, which negates the use of a slicer for viewing data subsets.&amp;nbsp; I'm fairly new to PowerBI, but it seems like there might be a dax formula to allow me to use my current slicer but creates a subset based on something like the following?&lt;BR /&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 1[ColumnA],0[ColumnB],0[ColumnC],0[ColumnD],count(myKey)[Totals] from #u2 where colA=1 and colB=0 and colC=0 and colD=0 union&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 0[ColumnA],1[ColumnB],0[ColumnC],0[ColumnD],count(myKey)[Totals] from #u2 where colA=0 and colB=1 and colC=0 and colD=0 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 0[ColumnA],0[ColumnB],1[ColumnC],0[ColumnD],count(myKey)[Totals] from #u2 where colA=0 and colB=0 and colC=1 and colD=0 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 0[ColumnA],0[ColumnB],0[ColumnC],1[ColumnD],count(myKey)[Totals] from #u2 where colA=0 and colB=0 and colC=0 and colD=1 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 1[ColumnA],1[ColumnB],0[ColumnC],0[ColumnD],count(myKey)[Totals] from #u2 where colA=1 and colB=1 and colC=0 and colD=0 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 0[ColumnA],1[ColumnB],1[ColumnC],0[ColumnD],count(myKey)[Totals] from #u2 where colA=0 and colB=1 and colC=1 and colD=0 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 0[ColumnA],0[ColumnB],1[ColumnC],1[ColumnD],count(myKey)[Totals] from #u2 where colA=0 and colB=0 and colC=1 and colD=1 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 1[ColumnA],0[ColumnB],0[ColumnC],1[ColumnD],count(myKey)[Totals] from #u2 where colA=1 and colB=0 and colC=0 and colD=1 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 1[ColumnA],1[ColumnB],1[ColumnC],0[ColumnD],count(myKey)[Totals] from #u2 where colA=1 and colB=1 and colC=1 and colD=0 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 0[ColumnA],1[ColumnB],1[ColumnC],1[ColumnD],count(myKey)[Totals] from #u2 where colA=0 and colB=1 and colC=1 and colD=1 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 1[ColumnA],0[ColumnB],1[ColumnC],1[ColumnD],count(myKey)[Totals] from #u2 where colA=1 and colB=0 and colC=1 and colD=1 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 1[ColumnA],1[ColumnB],0[ColumnC],1[ColumnD],count(myKey)[Totals] from #u2 where colA=1 and colB=1 and colC=0 and colD=1 union &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;select 1[ColumnA],1[ColumnB],1[ColumnC],1[ColumnD],count(myKey)[Totals] from #u2 where colA=1 and colB=1 and colC=1 and colD=1&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Nov 2021 18:52:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-Data-for-Venn-Diagram/m-p/2190876#M51225</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-15T18:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Data for Venn Diagram</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-Data-for-Venn-Diagram/m-p/2191549#M51250</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , have you checked pivot/ unpivot option in Power Query?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://radacad.com/pivot-and-unpivot-with-power-bi" target="_blank"&gt;https://radacad.com/pivot-and-unpivot-with-power-bi&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pivot Data(Power Query) :&lt;A href="https://www.youtube.com/watch?v=oKByyI09Bno&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=12" target="_blank"&gt;https://www.youtube.com/watch?v=oKByyI09Bno&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=12&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unpivot Data(Power Query) &lt;A href="https://www.youtube.com/watch?v=2HjkBtxSM0g&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=11" target="_blank"&gt;https://www.youtube.com/watch?v=2HjkBtxSM0g&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=11&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 03:29:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-Data-for-Venn-Diagram/m-p/2191549#M51250</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-11-16T03:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Data for Venn Diagram</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-Data-for-Venn-Diagram/m-p/2192840#M51297</link>
      <description>&lt;P&gt;I'm not seeing how the pivot would work? The Venn by MAQ requires the data to be in a specific format (see above) and does not do any aggregate summarization.&amp;nbsp; So, I couldn't have the link on my key in order to have a slicer applicable or be able to do a pivot on my category in order to get totals.&amp;nbsp; Does that make sense?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 16:06:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-Data-for-Venn-Diagram/m-p/2192840#M51297</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-16T16:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize Data for Venn Diagram</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-Data-for-Venn-Diagram/m-p/2198324#M51539</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I feel that it's difficult to create a measure to get dynamic &lt;SPAN&gt;aggregate summarization for measure field in the&amp;nbsp;Venn Diagram by MAQ software visual. Maybe you can consider creating a custom&amp;nbsp;&lt;/SPAN&gt;Venn Diagram with multiple pie charts and card visuals. It seems more flexiable.&amp;nbsp;See&amp;nbsp;&lt;A href="https://www.youtube.com/watch?v=L1govVEBxDo" target="_blank" rel="noopener"&gt;Power BI - Creating a Custom Venn Diagram - YouTube&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards, &lt;BR /&gt;Community Support Team _ Jing&lt;BR /&gt;If this post helps, please Accept it as Solution to help other members find it.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 09:48:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-Data-for-Venn-Diagram/m-p/2198324#M51539</guid>
      <dc:creator>v-jingzhang</dc:creator>
      <dc:date>2021-11-19T09:48:38Z</dc:date>
    </item>
  </channel>
</rss>

