<?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: Previous Year problem again in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044269#M642139</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Settu &amp;amp; Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your responses. I am sorry not to add a dimension to my example. I just added&amp;nbsp; the customer dimension to it. Please see the attach file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Settu, You are right! there is syntax errors in the calculation that i posted for the previous year calculation. But the original calculation i made in qlikview is same as you. So, i guess there is no issue on that. I am suspecting that that the way i created the PreviousMonthYear variable is not the right way to calculate it and thats why its not working in this particular situation i am trying to handle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;vPreviousMonthYear = (Date(addmonth(max([Sales Month Year]),-12), 'MMM YYYY')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Oh another thing, i was offline for quite a long time, thats why i couldn't reply post as soon as you guys reply my post.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Please let me know if you have any question / if i am vague of putting forth information.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Thanks &amp;amp; regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ahmed100&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 28 Feb 2016 16:37:07 GMT</pubDate>
    <dc:creator>AH</dc:creator>
    <dc:date>2016-02-28T16:37:07Z</dc:date>
    <item>
      <title>Previous Year problem again</title>
      <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044264#M642134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Month, Year and Sales field in an excel file. Month field contains values like 'January', 'February' in this &lt;/P&gt;&lt;P&gt;format. Year field contains values like '2014', '2015', '2016' in this format. I would like to make the Month field &lt;/P&gt;&lt;P&gt;values like 'Jan', 'Feb', 'Mar' this format. for this i used Capitalize(left(Month,3)) as [Sales Month].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Used Date#(Capitalize(left(Month,3)) &amp;amp; ' ' &amp;amp; [Year], MMM YYYY) as [Sales Month Year]. Then I created a variable&lt;/P&gt;&lt;P&gt;vPreviousMonthYear(Date(addmonth(max([Sales Month Year]),-12), 'MMM YYYY') out of the [Sales Month Year] field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The purpose of creating the variable 'vPreviousMonthYear' is to use it in the calculation of &lt;/P&gt;&lt;P&gt;1) Previous year sales, meaning that, if the user select 2016 from the year field then they can also see the 2015&lt;/P&gt;&lt;P&gt;sales as the previous year sales, if they select 2015 that would be the current and 2014 would be the previous sales&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when the user select Year as 2016 and month as January the user will see the current year as 2016 and month as January &lt;/P&gt;&lt;P&gt;sales But they also see the previous Year as 2015 and Month as January from Year 2015&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;My calculation for previous year calculation is: sum({&amp;lt;Sales Month Year&amp;gt;={'$(vPreviousMonthYear'}'}, [Sales Year]=, [Sales Month]=&amp;gt;}Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;One of my previous post with the same problem,&amp;nbsp; @Sunny T answered&amp;nbsp; the post and that was helpful but when i tried to &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;resolve the real problem i have i am getting problem/issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Can anyone help me solving the problem?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Thanks &amp;amp; regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;ahmed100&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2016 07:58:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044264#M642134</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-28T07:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Previous Year problem again</title>
      <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044265#M642135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you getting proper value for 'Sales month year ' value and vPreviousMonthYear value? &lt;/P&gt;&lt;P&gt;If so, try like&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;sum({&amp;lt;[Sales Month Year]={'$(vPreviousMonthYear)'}, [Sales Year]=, [Sales Month]=&amp;gt;}Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2016 08:36:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044265#M642135</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2016-02-28T08:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Previous Year problem again</title>
      <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044266#M642136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌Hi, Settu, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think i am using the same calculation you mentioned. My guess is i having issue with the variable I created for previousmonthyear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;ahmed100&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2016 09:02:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044266#M642136</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-28T09:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Previous Year problem again</title>
      <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044267#M642137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your posted expression seems to be incorrect syntax..&lt;/P&gt;&lt;P&gt;Can you post exact syntax you are using?&lt;/P&gt;&lt;P&gt;And check your variable giving the correct rest? Put the variable in textbox and check it..&lt;/P&gt;&lt;P&gt;If still have problem, can you post the sample? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2016 10:27:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044267#M642137</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2016-02-28T10:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Previous Year problem again</title>
      <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044268#M642138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess my question is what is your dimension here? Is it Year dimension dimension? If it is then you won't be able to just use set analysis to get the result on the same line. For that you will have to use Above() or Below() function. I think if you can provide a sample which somewhat matches what your real scenario is, we might be able to help you better&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2016 12:34:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044268#M642138</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-28T12:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Previous Year problem again</title>
      <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044269#M642139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Settu &amp;amp; Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your responses. I am sorry not to add a dimension to my example. I just added&amp;nbsp; the customer dimension to it. Please see the attach file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Settu, You are right! there is syntax errors in the calculation that i posted for the previous year calculation. But the original calculation i made in qlikview is same as you. So, i guess there is no issue on that. I am suspecting that that the way i created the PreviousMonthYear variable is not the right way to calculate it and thats why its not working in this particular situation i am trying to handle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;vPreviousMonthYear = (Date(addmonth(max([Sales Month Year]),-12), 'MMM YYYY')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Oh another thing, i was offline for quite a long time, thats why i couldn't reply post as soon as you guys reply my post.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Please let me know if you have any question / if i am vague of putting forth information.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Thanks &amp;amp; regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ahmed100&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2016 16:37:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044269#M642139</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-28T16:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Previous Year problem again</title>
      <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044270#M642140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you hoping to see something like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression for Previous Year Sales (PY Sales):&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=If(Sum(Sales) &amp;gt; 0, Above(Sum({&amp;lt;Year, Month&amp;gt;}Sales), 12))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/116230_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2016 17:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044270#M642140</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-28T17:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Previous Year problem again</title>
      <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044271#M642141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply and the solution. The apps you attached works perfectly fine and its working as expected. But when i apply that in my real application it does not work for some reason. I just couldnt find the reason why it shouldnt work. Could you please give me some suggestions based on your experience where i am doing wrong what could possibly go wrong in this particular situation? Even though i totally understand that without looking at the real apps its quite impossible to say whats going wrong with the apps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Btw, Could you please explain what is this expression doing to calculate the Previous Year sales?&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=If(Sum(Sales) &amp;gt; 0, Above(Sum({&amp;lt;Year, Month&amp;gt;}Sales), 12))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ahmed100&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2016 20:31:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044271#M642141</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-28T20:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Previous Year problem again</title>
      <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044272#M642142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another solution could be creating an As-of Table. Here is the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Customer,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Month(Date#(Month, 'MMMM')) as Month, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(MonthStart(Date#(Month &amp;amp; ' ' &amp;amp; Year, 'MMMM YYYY')), 'MMM YYYY') as Date,&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Data (5).xlsx]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Sales);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Calendar:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Date as As_Of_Date,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Date,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'CY' as Flag&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(Calendar)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Date as As_Of_Date,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Date(AddYears(Date, -1)) as Date,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'PY' as Flag &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data model:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/116246_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See if this solution is easier for you to implement. I can go over in details for the other if this doesn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2016 22:45:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044272#M642142</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-28T22:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Previous Year problem again</title>
      <link>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044273#M642143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your reply. The attachment you posted works perfect but i cant make that work in my original application. I dont understand why its not working. Could you copy your email here? May be i could show you a fraction of the original data and you could tell me the issue. Please ignore this message if you dont share email.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;ahmed100&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 01:43:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Previous-Year-problem-again/m-p/1044273#M642143</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-29T01:43:57Z</dc:date>
    </item>
  </channel>
</rss>

