<?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 I can create new lines that sumarize others lines and shows in my report as lines in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/How-I-can-create-new-lines-that-sumarize-others-lines-and-shows/m-p/2541414#M24328</link>
    <description>&lt;P&gt;Thanks, I am trying to aplied your answer but I cannot do yet I am with a lot of work right now and this question it for a new proyect and proposal to my bosses.&lt;/P&gt;&lt;P&gt;But sound logic and good, thanks for your time.&lt;/P&gt;</description>
    <pubDate>Thu, 26 May 2022 12:18:21 GMT</pubDate>
    <dc:creator>Marco_Antonio</dc:creator>
    <dc:date>2022-05-26T12:18:21Z</dc:date>
    <item>
      <title>How I can create new lines that sumarize others lines and shows in my report as lines</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/How-I-can-create-new-lines-that-sumarize-others-lines-and-shows/m-p/2529787#M24260</link>
      <description>&lt;P&gt;I've created a dashboar as the next image show it, and I need to create new lines that show the result Sales - SVC&amp;nbsp; and after that Its show into report but as lines bellow these lines as result.&lt;/P&gt;&lt;P&gt;I looked for differents website but all show how created new measure or calculate information, but I didn't the right answer to my problem.&lt;BR /&gt;Thanks in advance.&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>Fri, 20 May 2022 14:59:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/How-I-can-create-new-lines-that-sumarize-others-lines-and-shows/m-p/2529787#M24260</guid>
      <dc:creator>Marco_Antonio</dc:creator>
      <dc:date>2022-05-20T14:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: How I can create new lines that sumarize others lines and shows in my report as lines</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/How-I-can-create-new-lines-that-sumarize-others-lines-and-shows/m-p/2530455#M24268</link>
      <description>&lt;P&gt;You could maybe look at an approach like this one &lt;A href="https://www.sqlbi.com/blog/alberto/2011/03/01/powerpivot-parent-child-and-unary-operators/" target="_blank"&gt;https://www.sqlbi.com/blog/alberto/2011/03/01/powerpivot-parent-child-and-unary-operators/&lt;/A&gt; to make the grand total level show the value for Sales - Svc&lt;/P&gt;</description>
      <pubDate>Sat, 21 May 2022 02:38:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/How-I-can-create-new-lines-that-sumarize-others-lines-and-shows/m-p/2530455#M24268</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2022-05-21T02:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: How I can create new lines that sumarize others lines and shows in my report as lines</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/How-I-can-create-new-lines-that-sumarize-others-lines-and-shows/m-p/2535202#M24281</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="392377" data-lia-user-login="Marco_Antonio" class="lia-mention lia-mention-user"&gt;Marco_Antonio&lt;/a&gt;&amp;nbsp;，&lt;/P&gt;
&lt;P&gt;Pls test the below dax to create a new column:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table 2 =
UNION (
    SUMMARIZE (
        'Table',
        'Table'[Quarter],
        'Table'[Month],
        "Type1", "SALE-Svc",
        "Type2", "  ",
        "value",
            CALCULATE (
                SUM ( 'Table'[value] ),
                FILTER (
                    ALL ( 'Table' ),
                    'Table'[Quarter] = MAX ( 'Table'[Quarter] )
                        &amp;amp;&amp;amp; 'Table'[Month] = MAX ( 'Table'[Month] )
                        &amp;amp;&amp;amp; 'Table'[Type1] = "Sales"
                )
            )
                - CALCULATE (
                    SUM ( 'Table'[value] ),
                    FILTER (
                        ALL ( 'Table' ),
                        'Table'[Quarter] = MAX ( 'Table'[Quarter] )
                            &amp;amp;&amp;amp; 'Table'[Month] = MAX ( 'Table'[Month] )
                            &amp;amp;&amp;amp; 'Table'[Type1] = "Svc"
                    )
                )
    ),
    'Table'
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;before:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;after:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did I answer your question? Mark my post as a solution!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards&lt;/P&gt;
&lt;P&gt;Lucien&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 07:07:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/How-I-can-create-new-lines-that-sumarize-others-lines-and-shows/m-p/2535202#M24281</guid>
      <dc:creator>v-luwang-msft</dc:creator>
      <dc:date>2022-05-24T07:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: How I can create new lines that sumarize others lines and shows in my report as lines</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/How-I-can-create-new-lines-that-sumarize-others-lines-and-shows/m-p/2541414#M24328</link>
      <description>&lt;P&gt;Thanks, I am trying to aplied your answer but I cannot do yet I am with a lot of work right now and this question it for a new proyect and proposal to my bosses.&lt;/P&gt;&lt;P&gt;But sound logic and good, thanks for your time.&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2022 12:18:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/How-I-can-create-new-lines-that-sumarize-others-lines-and-shows/m-p/2541414#M24328</guid>
      <dc:creator>Marco_Antonio</dc:creator>
      <dc:date>2022-05-26T12:18:21Z</dc:date>
    </item>
  </channel>
</rss>

