<?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 Running Total Line Chart with Filters in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549709#M258564</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not even sure its possible but can anyone help me do a measure that can be used in a Line Graph that shows Month at the bottom and Totals on the side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want the monthly total for overtime.&lt;/P&gt;&lt;P&gt;I think the problem is I have page filters so it keeps changing it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried something like -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Month by Month = CALCULATE(SUM('DB Overtime Master'[Total],FILTER('Month','Month'[Month])))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Ross&lt;/P&gt;</description>
    <pubDate>Tue, 23 Oct 2018 10:46:05 GMT</pubDate>
    <dc:creator>rosscortb</dc:creator>
    <dc:date>2018-10-23T10:46:05Z</dc:date>
    <item>
      <title>Running Total Line Chart with Filters</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549709#M258564</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not even sure its possible but can anyone help me do a measure that can be used in a Line Graph that shows Month at the bottom and Totals on the side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want the monthly total for overtime.&lt;/P&gt;&lt;P&gt;I think the problem is I have page filters so it keeps changing it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried something like -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Month by Month = CALCULATE(SUM('DB Overtime Master'[Total],FILTER('Month','Month'[Month])))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Ross&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 10:46:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549709#M258564</guid>
      <dc:creator>rosscortb</dc:creator>
      <dc:date>2018-10-23T10:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total Line Chart with Filters</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549738#M258580</link>
      <description>&lt;P&gt;I'm not clear what do you want to achieve&lt;BR /&gt;do you mean YTD calculation? can you share sample data?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 11:01:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549738#M258580</guid>
      <dc:creator>Stachu</dc:creator>
      <dc:date>2018-10-23T11:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total Line Chart with Filters</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549749#M258585</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Something like this.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 11:12:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549749#M258585</guid>
      <dc:creator>rosscortb</dc:creator>
      <dc:date>2018-10-23T11:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total Line Chart with Filters</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549760#M258590</link>
      <description>&lt;P&gt;Do you mean like this?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your measure is the Value and your&amp;nbsp;month is the Axis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alter your measure to this:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CALCULATE(SUM('DB Overtime Master'[Total],ALL('Month'[Month]))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 11:21:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549760#M258590</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-23T11:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total Line Chart with Filters</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549768#M258594</link>
      <description>&lt;P&gt;Thank you. Sometimes its quite frustrasting as it can be a , or ( in the wrong place and throws whole thing out.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 11:31:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Running-Total-Line-Chart-with-Filters/m-p/549768#M258594</guid>
      <dc:creator>rosscortb</dc:creator>
      <dc:date>2018-10-23T11:31:45Z</dc:date>
    </item>
  </channel>
</rss>

