<?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: Not show Sum or Average in Total (PIC INCLUDED) in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4686118#M179484</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="214200" data-lia-user-login="common763" class="lia-mention lia-mention-user"&gt;common763&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We really appreciate your efforts and for letting us know the update on the issue.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please continue using fabric community forum for your further assistance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;If this is the solution that has worked for you please accept your reply as solution so as to help other community members who may face similar issue in the future&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;SPAN data-teams="true"&gt;&amp;nbsp;&lt;BR /&gt;Thank you and Regards,&lt;BR /&gt;Menaka Kota.&lt;/SPAN&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 09 May 2025 07:21:52 GMT</pubDate>
    <dc:creator>v-menakakota</dc:creator>
    <dc:date>2025-05-09T07:21:52Z</dc:date>
    <item>
      <title>Not show Sum or Average in Total (PIC INCLUDED)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4608660#M176415</link>
      <description>&lt;P&gt;I have a matrix table with two rows.&amp;nbsp; Main one is C1, and the second is C2.&amp;nbsp; I then have C3 for values.&amp;nbsp; I want to display the sum only by C2 as in this situation it doesnt make sense to show C1 totals.&amp;nbsp; Is there a way to omit the numbers in the main category of C1?&amp;nbsp; I have displayed a pic.&amp;nbsp; Any help would be appreciated.&amp;nbsp; &amp;nbsp;So omit the 15 under AAA, BBB, etc.&amp;nbsp; Just clicking row totals doesnt work because I cannot have the end-user click the plus sign and have it roll up to that AAA =&amp;nbsp; 15 ever.&amp;nbsp;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 13:02:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4608660#M176415</guid>
      <dc:creator>common763</dc:creator>
      <dc:date>2025-03-13T13:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Not show Sum or Average in Total (PIC INCLUDED)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4608781#M176418</link>
      <description>&lt;P&gt;I think you can create a measure like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sum at C2 level only =
IF ( ISINSCOPE ( 'Table'[C2] ), SUM ( 'Table'[C3] ) )
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 13 Mar 2025 13:54:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4608781#M176418</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-03-13T13:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Not show Sum or Average in Total (PIC INCLUDED)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4609019#M176435</link>
      <description>&lt;P&gt;If I do that it doesnt show anything for C1 and the matrix is blank.&amp;nbsp; I need it to display everything and not show the totals for C1.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 16:31:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4609019#M176435</guid>
      <dc:creator>common763</dc:creator>
      <dc:date>2025-03-13T16:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Not show Sum or Average in Total (PIC INCLUDED)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4609028#M176436</link>
      <description>&lt;P&gt;Can you share the PBIX ? You can post a link to Google Drive, OneDrive or similar.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 16:37:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4609028#M176436</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-03-13T16:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Not show Sum or Average in Total (PIC INCLUDED)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4609129#M176439</link>
      <description>&lt;P&gt;I think I found what I am looking for.&amp;nbsp; This kinda works.&lt;/P&gt;&lt;P&gt;ActiveS =&lt;BR /&gt;SWITCH(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; TRUE(),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; ISINSCOPE(ADC_by_W[VWards]), average(Wards[Active]),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; ISINSCOPE(ADC_by_W[DISPLAY_NAME]), "",&lt;BR /&gt;&amp;nbsp; &amp;nbsp; ISINSCOPE(ADC_by_W[V]), "",&lt;BR /&gt;&amp;nbsp; &amp;nbsp; "")&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 13 Mar 2025 17:48:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4609129#M176439</guid>
      <dc:creator>common763</dc:creator>
      <dc:date>2025-03-13T17:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: Not show Sum or Average in Total (PIC INCLUDED)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4686118#M179484</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="214200" data-lia-user-login="common763" class="lia-mention lia-mention-user"&gt;common763&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We really appreciate your efforts and for letting us know the update on the issue.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please continue using fabric community forum for your further assistance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;If this is the solution that has worked for you please accept your reply as solution so as to help other community members who may face similar issue in the future&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;SPAN data-teams="true"&gt;&amp;nbsp;&lt;BR /&gt;Thank you and Regards,&lt;BR /&gt;Menaka Kota.&lt;/SPAN&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 07:21:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4686118#M179484</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-05-09T07:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Not show Sum or Average in Total (PIC INCLUDED)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4689090#M179576</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/214200" target="_blank"&gt;@common763&lt;/A&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We really appreciate your efforts and for letting us know the update on the issue.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please continue using fabric community forum for your further assistance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;If this is the solution that has worked for you please accept your reply as solution so as to help other community members who may face similar issue in the future&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;SPAN data-teams="true"&gt;&amp;nbsp;&lt;BR /&gt;Thank you and Regards,&lt;BR /&gt;Menaka Kota.&lt;/SPAN&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 11:22:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4689090#M179576</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-05-12T11:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Not show Sum or Average in Total (PIC INCLUDED)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4695848#M179843</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="214200" data-lia-user-login="common763" class="lia-mention lia-mention-user"&gt;common763&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;&amp;nbsp;As you mentioned above that it worked for you can you confirm on that.&amp;nbsp;If this is the solution that has worked for you please accept your reply as solution so as to help other community members who may face similar issue in the future&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;&amp;nbsp;&lt;BR /&gt;Thank you and Regards,&lt;BR /&gt;Menaka Kota.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 11:35:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-show-Sum-or-Average-in-Total-PIC-INCLUDED/m-p/4695848#M179843</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-05-16T11:35:05Z</dc:date>
    </item>
  </channel>
</rss>

