<?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 Rollup in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Rollup/m-p/2040322#M31371</link>
    <description>&lt;P&gt;How to find roll up of the total outstanding of each month.&lt;/P&gt;</description>
    <pubDate>Thu, 26 Aug 2021 11:45:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-08-26T11:45:04Z</dc:date>
    <item>
      <title>Rollup</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Rollup/m-p/2040322#M31371</link>
      <description>&lt;P&gt;How to find roll up of the total outstanding of each month.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 11:45:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Rollup/m-p/2040322#M31371</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-26T11:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Rollup</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Rollup/m-p/2040396#M31372</link>
      <description>&lt;P&gt;&lt;SPAN&gt;When you say "rollup" do you mean the SQL function similar to a GROUP BY clause?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Not really enough information to go on, please first check if your issue is a common issue listed here:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882" target="_blank" rel="noopener"&gt;https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, please see this post regarding How to Get Your Question Answered Quickly:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank" rel="noopener"&gt;https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The most important parts are:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Sample data as text, use the table tool in the editing bar&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Expected output from sample data&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Explanation in words of how to get from 1. to 2.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hope this answer solves your problem! If you need any additional help please tag me in your reply.&lt;BR /&gt;If my reply provided you with a solution, pleased mark it as a solution &lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt; or give it a kudoe &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Gonçalo Geraldes&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 12:24:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Rollup/m-p/2040396#M31372</guid>
      <dc:creator>goncalogeraldes</dc:creator>
      <dc:date>2021-08-26T12:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Rollup</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Rollup/m-p/2047924#M31444</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does your "Roll UP" mean that you want to get cumulative sum result by month?&lt;/P&gt;
&lt;P&gt;You can try my way. Firstly build a date table by dax code.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Date = ADDCOLUMNS(CALENDARAUTO(),"Year",YEAR([Date]),"Month",MONTH([Date]),"YearMonth",YEAR([Date])*100+MONTH([Date]))&lt;/LI-CODE&gt;
&lt;P&gt;Build a relationshio between date table and your fact table by date column.&lt;/P&gt;
&lt;P&gt;Then build a measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Roll UP = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Date'),'Date'[YearMonth]&amp;lt;=MAX('Date'[YearMonth]))) &lt;/LI-CODE&gt;
&lt;P&gt;Result is as below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 757px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/583883iBC2E7248377D70E7/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 07:05:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Rollup/m-p/2047924#M31444</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-31T07:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Rollup</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Rollup/m-p/2059263#M31566</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Rico Zhou&lt;/P&gt;</description>
      <pubDate>Mon, 06 Sep 2021 08:54:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Rollup/m-p/2059263#M31566</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-06T08:54:03Z</dc:date>
    </item>
  </channel>
</rss>

