<?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: Rolling 12 month in a bar chart in Visualization and Usability</title>
    <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101268#M22068</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answer. &lt;/P&gt;&lt;P&gt;I'll need to learn how to create a variable as I never done this before. As in my reply above I'm very new still to Qlik. I'll learn this and see how I get on&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Nov 2018 12:10:54 GMT</pubDate>
    <dc:creator>simonbowers</dc:creator>
    <dc:date>2018-11-02T12:10:54Z</dc:date>
    <item>
      <title>Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101264#M22064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to understand how to create a rolling 12 month calculation in a bar chart. This is for Qlik Sense NOT QlikView.&lt;/P&gt;&lt;P&gt;What I want to see if a chart that show the count of the 12 months moving through time. So January 16 would be reflective of the count Feb 15 - Jan 16, then the next bar Feb '16 to reflect of the period Mar 15 to Feb 16 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To try and understand how to do this I've stripped by data back to pull only the fields I need for this calculation in a new app. I figure once I understand how to do it I can then use an expressions/scripting in the full app I actually need it for. This means I have two field in my load script, Date Received and Case Type. I have also created a master calendar based on Joss Good's post. When multiple users on the forums reference one guide on how to create a master calendar then it makes sense to use it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QuartersMap:&amp;nbsp; &lt;/P&gt;&lt;P&gt;MAPPING LOAD&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;rowno() as Month,&amp;nbsp; &lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil (rowno()/3) as Quarter&amp;nbsp; &lt;/P&gt;&lt;P&gt;AUTOGENERATE (12);&amp;nbsp; &lt;/P&gt;&lt;P&gt;// Calendar for date received &lt;/P&gt;&lt;P&gt;Temp:&amp;nbsp; &lt;/P&gt;&lt;P&gt;Load&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min(DateReceived) as minDate,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max(DateReceived) as maxDate&amp;nbsp; &lt;/P&gt;&lt;P&gt;Resident Problemmaster;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Let varMinDate = Num(Peek('minDate', 0, 'Temp'));&amp;nbsp; &lt;/P&gt;&lt;P&gt;Let varMaxDate = Num(Peek('maxDate', 0, 'Temp'));&amp;nbsp; &lt;/P&gt;&lt;P&gt;DROP Table Temp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;TempCalendar:&amp;nbsp; &lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(varMinDate) + Iterno()-1 As Num,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date($(varMinDate) + IterNo() - 1) as TempDate&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AutoGenerate 1 While $(varMinDate) + IterNo() -1 &amp;lt;= $(varMaxDate);&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;ReceivedCalendar:&amp;nbsp; &lt;/P&gt;&lt;P&gt;Load&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TempDate AS DateReceived,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; week(TempDate) As RWeek,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(TempDate) As RYear,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(TempDate) As RMonth,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(TempDate) As RDay,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YeartoDate(TempDate)*-1 as RCurrentYTDFlag,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YeartoDate(TempDate,-1)*-1 as RLastYTDFlag,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inyear(TempDate, Monthstart($(varMaxDate)),-1) as RRC12,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(monthstart(TempDate), 'MMM-YYYY') as RMonthYear,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplyMap('QuartersMap', month(TempDate), Null()) as RQuarter,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(weekstart(TempDate)) &amp;amp; '-' &amp;amp; WeekYear(TempDate) as RWeekYear,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WeekDay(TempDate) as RWeekDay,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Resident TempCalendar&amp;nbsp; &lt;/P&gt;&lt;P&gt;Order By TempDate ASC;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Drop Table TempCalendar;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I'm finding is that in #1 KPI the expression =Count({&amp;lt;CaseType={'Internal'},RRC12={'-1'}&amp;gt;}CaseType) works great and reflect the previous 12 months.&amp;nbsp; However this only works for a single data point. What I can't work out is how to do this with moving data points. I suspect its a rangesum I need I just can't get the expression right. &lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 10:21:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101264#M22064</guid>
      <dc:creator>simonbowers</dc:creator>
      <dc:date>2018-11-02T10:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101265#M22065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See &lt;A href="https://community.qlik.com/docs/DOC-4252"&gt;Calculating rolling n-period totals, averages or other aggregations&lt;/A&gt;. This applies ot both Qlik Sense and Qlikview (with the exception of the Accumulation setting that's only available in Qlikview).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 10:35:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101265#M22065</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-11-02T10:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101266#M22066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you have to options.&lt;/P&gt;&lt;P&gt;1. You can created (one of my most common recommendations) &lt;A href="https://community.qlik.com/qlik-blogpost/4531"&gt;The As-Of Table&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;2. Add this to your calendar table:&lt;/P&gt;&lt;P&gt;Year(TempDate)*12+Month(TempDate) as %MonthID&lt;/P&gt;&lt;P&gt;Create a variable sMaxMonthID = Max(%MonthID) //with leading = sign&lt;/P&gt;&lt;P&gt;In expression, use Count({&amp;lt;CaseType={'Internal'}, RYear, RMonth, %IDMonth={"&amp;lt;=$(sMaxMonthID)&amp;gt;$(=sMaxMonhtID-12)"}&amp;gt;}CaseType) //apart from RYear and RMonth you need to turn off any other possible user selections in calendar fields.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Juraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 10:41:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101266#M22066</guid>
      <dc:creator>juraj_misina</dc:creator>
      <dc:date>2018-11-02T10:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101267#M22067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply. I had read this piece prior to asking my question. Especially the bit around it not being limited by the dimension as this is one the issue I've encountered.&lt;/P&gt;&lt;P&gt;I'll be honest and say the reason I posted the question was I simply didn't understand what the other post wanted me to do.&lt;/P&gt;&lt;P&gt;I was good with the:&lt;/P&gt;&lt;P&gt;=Rangesum(Above(Count({&amp;lt;CaseType={'Internal'}&amp;gt;}CaseType),0,12))&lt;/P&gt;&lt;P&gt;but as noted in the I've hit the issue of I've data going back 10 years but only want to show the last 2 on the chart. The issue being the dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I add the as of month to the master calendar? Does it need a separate calendar creating?&lt;/P&gt;&lt;P&gt;I'm still new to Qlik (and typing code for that matter) so really need a dummies guide on how to complete things&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 11:52:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101267#M22067</guid>
      <dc:creator>simonbowers</dc:creator>
      <dc:date>2018-11-02T11:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101268#M22068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answer. &lt;/P&gt;&lt;P&gt;I'll need to learn how to create a variable as I never done this before. As in my reply above I'm very new still to Qlik. I'll learn this and see how I get on&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 12:10:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101268#M22068</guid>
      <dc:creator>simonbowers</dc:creator>
      <dc:date>2018-11-02T12:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101269#M22069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The AsOf table is usually created as a seperate table that's associated with the master calendar table on the Month field (or the Date field if you want to do rolling x days too).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 12:30:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101269#M22069</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-11-02T12:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101270#M22070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really want your help but can I ask you to note this has been posted in the new to QLIK forum and if possible supply any answer with this in mind. Most things I never done or tried to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 12:32:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101270#M22070</guid>
      <dc:creator>simonbowers</dc:creator>
      <dc:date>2018-11-02T12:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101271#M22071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Simon,&lt;/P&gt;&lt;P&gt;never mind the variable at this point. I misunderstood your requirement so it would not help you anyway. Go with the As-Of Table article I posted earlier, it is written in a very easy-to-understand manner and you can follow it step by step to achieve what you need. As Gysbert mentioned, as-of table is a separate table connected to main calendar table (mostly) via the Month field (RMonth in your case&lt;SPAN style="font-size: 13.3333px;"&gt;). In the output chart you can then replace RMonth with AsOfMonth field, see examples and pictures in the article.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Juraj&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 12:52:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101271#M22071</guid>
      <dc:creator>juraj_misina</dc:creator>
      <dc:date>2018-11-02T12:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101272#M22072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wanted to mark both your's and Gysbert's answers as the limiting factor here was my knowledge and not your answers. Going with the ASofMonth table on a separate table to my calendar. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I watched some YouTube videos on creating variables and can see the usefulness once my skill level is higher&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 14:15:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101272#M22072</guid>
      <dc:creator>simonbowers</dc:creator>
      <dc:date>2018-11-02T14:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101273#M22073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help. I can only mark one answer correct and both of you have solved the issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 14:16:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101273#M22073</guid>
      <dc:creator>simonbowers</dc:creator>
      <dc:date>2018-11-02T14:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101274#M22074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've now created the as of month as per the instructions and it is correct on all the data connection. However I get the same issue I had been. If, using filters, I select 2018 it still not back counting. So January only shows Jan, Feb total is Jan+Feb. I just don't get what I'm doing wrong, I have followed every instruction&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 14:37:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101274#M22074</guid>
      <dc:creator>simonbowers</dc:creator>
      <dc:date>2018-11-02T14:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101275#M22075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you perhaps share an example app which we can check?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 22:04:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101275#M22075</guid>
      <dc:creator>juraj_misina</dc:creator>
      <dc:date>2018-11-02T22:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101276#M22076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One thought thogh. When you say "I select 2018", is that selection made in regular calendar or the as-of calendar? Because if it is in regular calendar table, then the behaviour you describe is expected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2018 23:27:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101276#M22076</guid>
      <dc:creator>juraj_misina</dc:creator>
      <dc:date>2018-11-02T23:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 month in a bar chart</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101277#M22077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. I'll go back and try again. I'm unable to share anything due to rules the company has around data usage and sharing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2018 10:09:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Rolling-12-month-in-a-bar-chart/m-p/101277#M22077</guid>
      <dc:creator>simonbowers</dc:creator>
      <dc:date>2018-11-07T10:09:29Z</dc:date>
    </item>
  </channel>
</rss>

