<?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: Visualization - Line chart with cumulative numbers! in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1895879#M29923</link>
    <description>&lt;P&gt;Hi Liang,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/182446"&gt;@V-lianl-msft&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the pbix file which you shared in my post and I saw you have queried a table which contains months and counts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I have a list of customer complaints file and how should I create the table which you queried in power query.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create this table by some measures in powerBI itself.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My input table in power query is "List of customer complaints" containing columns "Date of complaint" " Customer name" "Detail of complaint" etc..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to create the count of "no. of complaints" for each month as a table and then I have to use your method to put cumulative line graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Manickaraj&lt;/P&gt;</description>
    <pubDate>Fri, 11 Jun 2021 12:25:12 GMT</pubDate>
    <dc:creator>manicktvs91</dc:creator>
    <dc:date>2021-06-11T12:25:12Z</dc:date>
    <item>
      <title>Visualization - Line chart with cumulative numbers!</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1883376#M29790</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a set of data (for example : number of customer complaints on weekly basis for last 1 year), Now I want to represent it in a line chart with cumulative increasing numbers week on week. what is the method to do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently the line graph which I am able to do is to indicate the absolute values each week. I want to show it as cumulative increasing number each week.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks if anybody can help me out!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Manickaraj&lt;/P&gt;</description>
      <pubDate>Sat, 05 Jun 2021 15:21:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1883376#M29790</guid>
      <dc:creator>manicktvs91</dc:creator>
      <dc:date>2021-06-05T15:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Visualization - Line chart with cumulative numbers!</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1883453#M29791</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/305807"&gt;@manicktvs91&lt;/a&gt;&amp;nbsp;There are running total quick measures but the general pattern is using something like:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
  VAR __Date = MAX('Table'[Date])
RETURN
  SUMX(FILTER(ALL('Table'),[Date] &amp;lt;= __Date),[Column])&lt;/LI-CODE&gt;
&lt;P&gt;You didn't provide any detail, so hard to be specific. Here's the standard "more info" macro:&lt;/P&gt;
&lt;P&gt;Sorry, having trouble following, can you post sample data as text and expected output?&lt;BR /&gt;Not really enough information to go on, please first check if your issue is a common issue listed here: &lt;A href="https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882" target="_blank"&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;Also, please see this post regarding How to Get Your Question Answered Quickly: &lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&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;The most important parts are:&lt;BR /&gt;1. Sample data as text, use the table tool in the editing bar&lt;BR /&gt;2. Expected output from sample data&lt;BR /&gt;3. Explanation in words of how to get from 1. to 2.&lt;/P&gt;</description>
      <pubDate>Sat, 05 Jun 2021 17:44:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1883453#M29791</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2021-06-05T17:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Visualization - Line chart with cumulative numbers!</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1889730#M29843</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/305807"&gt;@manicktvs91&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could try measure like below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = CALCULATE(SUM('Table'[complaints ]),FILTER(ALL('Table'),COUNTROWS(FILTER('Table',EARLIER('Table'[Year_week])&amp;lt;='Table'[Year_week]))))&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="V-lianl-msft_0-1623219440642.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/530221i91535E48B0314921/image-size/medium?v=v2&amp;amp;px=400" role="button" title="V-lianl-msft_0-1623219440642.png" alt="V-lianl-msft_0-1623219440642.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="V-lianl-msft_1-1623219448421.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/530222iAF70BAF54E51DB7C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="V-lianl-msft_1-1623219448421.png" alt="V-lianl-msft_1-1623219448421.png" /&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&gt;Best Regards,&lt;BR /&gt;Liang&lt;BR /&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;</description>
      <pubDate>Wed, 09 Jun 2021 06:17:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1889730#M29843</guid>
      <dc:creator>V-lianl-msft</dc:creator>
      <dc:date>2021-06-09T06:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Visualization - Line chart with cumulative numbers!</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1895843#M29920</link>
      <description>&lt;P&gt;Hi Liang, Thank you very much. I tried the same with another set of data and it worked. Many thanks&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 12:12:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1895843#M29920</guid>
      <dc:creator>manicktvs91</dc:creator>
      <dc:date>2021-06-11T12:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: Visualization - Line chart with cumulative numbers!</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1895848#M29921</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/182446"&gt;@V-lianl-msft&lt;/a&gt;&amp;nbsp;Thank you once again&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 12:14:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1895848#M29921</guid>
      <dc:creator>manicktvs91</dc:creator>
      <dc:date>2021-06-11T12:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: Visualization - Line chart with cumulative numbers!</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1895852#M29922</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/313"&gt;@Greg_Deckler&lt;/a&gt;&amp;nbsp;Thank you for the reply. I am trying your method. Is there an option to upload my pbix file here so that you can have a look?&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 12:16:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1895852#M29922</guid>
      <dc:creator>manicktvs91</dc:creator>
      <dc:date>2021-06-11T12:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Visualization - Line chart with cumulative numbers!</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1895879#M29923</link>
      <description>&lt;P&gt;Hi Liang,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/182446"&gt;@V-lianl-msft&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the pbix file which you shared in my post and I saw you have queried a table which contains months and counts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I have a list of customer complaints file and how should I create the table which you queried in power query.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create this table by some measures in powerBI itself.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My input table in power query is "List of customer complaints" containing columns "Date of complaint" " Customer name" "Detail of complaint" etc..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to create the count of "no. of complaints" for each month as a table and then I have to use your method to put cumulative line graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Manickaraj&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 12:25:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1895879#M29923</guid>
      <dc:creator>manicktvs91</dc:creator>
      <dc:date>2021-06-11T12:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Visualization - Line chart with cumulative numbers!</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1896578#M29933</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/305807"&gt;@manicktvs91&lt;/a&gt;&amp;nbsp;Super users can post PBIX files but otherwise you would need to post on OneDrive/Box and share a link&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 19:01:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Visualization-Line-chart-with-cumulative-numbers/m-p/1896578#M29933</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2021-06-11T19:01:44Z</dc:date>
    </item>
  </channel>
</rss>

