<?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: summarized data in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/summarized-data/m-p/2045621#M20744</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="296790" data-lia-user-login="Rocky_Brown" class="lia-mention lia-mention-user"&gt;Rocky_Brown&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I create a sample, please check if this is what you want:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LastMonthData filtered by Quater =
IF (
    ISFILTERED ( 'Table'[Date].[Quarter] )
        &amp;amp;&amp;amp; NOT ( ISFILTERED ( 'Table'[Date].[Month] ) ),
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[Date] &amp;gt; EOMONTH ( MIN ( 'Table'[Date] ), -2 )
                &amp;amp;&amp;amp; 'Table'[Date] &amp;lt;= EOMONTH ( MIN ( 'Table'[Date] ), -1 )
        )
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this sample, it returns blank when filtered by Date.Month. In you scenario, you can set what you want when&amp;nbsp;filtered by Date.Month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Icey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Aug 2021 09:05:26 GMT</pubDate>
    <dc:creator>Icey</dc:creator>
    <dc:date>2021-08-30T09:05:26Z</dc:date>
    <item>
      <title>summarized data</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/summarized-data/m-p/2040865#M20708</link>
      <description>&lt;P&gt;I have a report that summarizes data based on Year, Qurter and Month.&amp;nbsp; A have slicers for all 3 elements.&amp;nbsp; Is there a way to display the summed data to reflect the last month's figures when selecting just the Quarter slice and not the month slicer?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 15:45:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/summarized-data/m-p/2040865#M20708</guid>
      <dc:creator>Rocky_Brown</dc:creator>
      <dc:date>2021-08-26T15:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: summarized data</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/summarized-data/m-p/2044592#M20734</link>
      <description>&lt;P&gt;Please specify if this is for Report Server or for the Power BI Service.&lt;/P&gt;
&lt;P&gt;Please provide sample data in usable format (not as a picture - maybe insert into a table?) and show the expected outcome.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Aug 2021 20:32:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/summarized-data/m-p/2044592#M20734</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2021-08-29T20:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: summarized data</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/summarized-data/m-p/2045621#M20744</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="296790" data-lia-user-login="Rocky_Brown" class="lia-mention lia-mention-user"&gt;Rocky_Brown&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I create a sample, please check if this is what you want:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LastMonthData filtered by Quater =
IF (
    ISFILTERED ( 'Table'[Date].[Quarter] )
        &amp;amp;&amp;amp; NOT ( ISFILTERED ( 'Table'[Date].[Month] ) ),
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[Date] &amp;gt; EOMONTH ( MIN ( 'Table'[Date] ), -2 )
                &amp;amp;&amp;amp; 'Table'[Date] &amp;lt;= EOMONTH ( MIN ( 'Table'[Date] ), -1 )
        )
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this sample, it returns blank when filtered by Date.Month. In you scenario, you can set what you want when&amp;nbsp;filtered by Date.Month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Icey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 09:05:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/summarized-data/m-p/2045621#M20744</guid>
      <dc:creator>Icey</dc:creator>
      <dc:date>2021-08-30T09:05:26Z</dc:date>
    </item>
  </channel>
</rss>

