<?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: Can anyone help me build a table with different totals rows for gross and net in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243423#M168001</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="825516" data-lia-user-login="CHAMBERS" class="lia-mention lia-mention-user"&gt;CHAMBERS&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See if you can adapt the solution below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Building-a-P-amp-L-matrix-with-calculated-lines-data-source-is/m-p/4214681#M1324489" target="_self"&gt;https://community.fabric.microsoft.com/t5/Desktop/Building-a-P-amp-L-matrix-with-calculated-lines-data-source-is/m-p/4214681#M1324489&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EBITDA would be Net Expenditure in your example. You can specify the position of total rows in the matrix visual.&lt;/P&gt;</description>
    <pubDate>Tue, 15 Oct 2024 16:08:28 GMT</pubDate>
    <dc:creator>DataInsights</dc:creator>
    <dc:date>2024-10-15T16:08:28Z</dc:date>
    <item>
      <title>Can anyone help me build a table with different totals rows for gross and net</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243158#M167993</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with 3 columns, one for area, one for cost and the last which shows if the amount is income or expenditure.&amp;nbsp; I want to be able to create a table that shows the area and cost but have 3 different totals rows for Gross expenditure, gross income and net expenditure.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also want to be able to filter this table by area and have the totals amounts change.&amp;nbsp; Everything I have tried so far such as union and add rows gives me the totals rows i want but they do not filter when I only select certain areas&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be much appreciated!!&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 13:33:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243158#M167993</guid>
      <dc:creator>CHAMBERS</dc:creator>
      <dc:date>2024-10-15T13:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone help me build a table with different totals rows for gross and net</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243216#M167996</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="825516" data-lia-user-login="CHAMBERS" class="lia-mention lia-mention-user"&gt;CHAMBERS&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could create a table like the one below:&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;Example measures:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Cost =
SUM ( 'Table'[Cost] )&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Gross Expenditure =
CALCULATE ( [Cost], 'Table'[Cost Type] = "Expenditure" )&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Gross Income =
CALCULATE ( [Cost], 'Table'[Cost Type] = "Income" )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Net Expenditure is the sum of all Cost Type, so you could use the base measure Cost or create a separate measure.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 14:11:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243216#M167996</guid>
      <dc:creator>DataInsights</dc:creator>
      <dc:date>2024-10-15T14:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone help me build a table with different totals rows for gross and net</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243218#M167997</link>
      <description>&lt;P&gt;Clarification:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you make Expenditure amounts negative, then Net Expenditure is the sum of all Cost Type. If all amounts are positive, you could create a measure like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Net Expenditure =
[Gross Income] - [Gross Expenditure]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 14:22:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243218#M167997</guid>
      <dc:creator>DataInsights</dc:creator>
      <dc:date>2024-10-15T14:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone help me build a table with different totals rows for gross and net</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243231#M167998</link>
      <description>&lt;P&gt;What I'm after is something that looks like this (imagine there are a list of different areas under business area).&amp;nbsp; I need the different totals to appear as rows in the same table.&amp;nbsp; At the moment, this is 3 tables layered on top&amp;nbsp; of each other which would be fine if the number of business areas stayed the same but i need to be able to filter on business area and have the totals filter too&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;</description>
      <pubDate>Tue, 15 Oct 2024 14:35:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243231#M167998</guid>
      <dc:creator>CHAMBERS</dc:creator>
      <dc:date>2024-10-15T14:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone help me build a table with different totals rows for gross and net</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243423#M168001</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="825516" data-lia-user-login="CHAMBERS" class="lia-mention lia-mention-user"&gt;CHAMBERS&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See if you can adapt the solution below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Building-a-P-amp-L-matrix-with-calculated-lines-data-source-is/m-p/4214681#M1324489" target="_self"&gt;https://community.fabric.microsoft.com/t5/Desktop/Building-a-P-amp-L-matrix-with-calculated-lines-data-source-is/m-p/4214681#M1324489&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EBITDA would be Net Expenditure in your example. You can specify the position of total rows in the matrix visual.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 16:08:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4243423#M168001</guid>
      <dc:creator>DataInsights</dc:creator>
      <dc:date>2024-10-15T16:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone help me build a table with different totals rows for gross and net</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4263070#M168968</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="825516" data-lia-user-login="CHAMBERS" class="lia-mention lia-mention-user"&gt;CHAMBERS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;&lt;SPAN class=""&gt;Have you solved your problem? If so, can you share your solution here and mark the correct answer as a standard answer to help other members find it faster? Thank you very much for your kind cooperation!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin-bottom: 6.0pt;"&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-bottom: 6.0pt;"&gt;&lt;SPAN&gt;Yilong Zhou&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-bottom: 6.0pt;"&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;I&gt;helps, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;I&gt;Accept it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/I&gt;&lt;/STRONG&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 02:06:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-anyone-help-me-build-a-table-with-different-totals-rows-for/m-p/4263070#M168968</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-10-30T02:06:49Z</dc:date>
    </item>
  </channel>
</rss>

