<?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: Date with string problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022037#M640073</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, right. Probably this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;date(max([Month Year],'MMM YYYY')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Feb 2016 00:10:03 GMT</pubDate>
    <dc:creator>johnw</dc:creator>
    <dc:date>2016-02-25T00:10:03Z</dc:date>
    <item>
      <title>Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022033#M640069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Month column that contains Months value Like this 'January', 'February' and so on. I have a Year field that contains Year Value Like this '2014', '2015' and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to tie this two column and make a date field and then calculate the max date from this field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is when i concatenate this two field and make one date field i cant calculate max date from that date field. I think the reason behind is, i am concatenating string and number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Could anyone help me &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;out this problem?&lt;BR /&gt;&lt;/SPAN&gt;&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>Wed, 24 Feb 2016 23:40:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022033#M640069</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-24T23:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022034#M640070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MakeDate(YearField, Num(Month(Date#(MonthField, 'MMMM'))), 1) as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2016 23:42:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022034#M640070</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-24T23:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022035#M640071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think being a number would stop the concatenation. Works fine for me like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;date#('February ' &amp;amp; 2015,'MMMM YYYY')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in the script, I'd do something like this:&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,date#([Month] &amp;amp; ' ' &amp;amp; [Year],'MMMM YYYY') as [Month Year]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then just this as the expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier; text-decoration: line-through;"&gt;max([Month Year])&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;edit:&lt;/SPAN&gt; date(max([Month Year],'MMM YYYY')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2016 23:49:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022035#M640071</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2016-02-24T23:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022036#M640072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John, Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While calculating the max i am getting integer value but if i use date function before max then i am getting date format like this 1/1/2016. but i would like to keep it like Jan 2016.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ahmed100&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 00:08:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022036#M640072</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-25T00:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022037#M640073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, right. Probably this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;date(max([Month Year],'MMM YYYY')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 00:10:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022037#M640073</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2016-02-25T00:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022038#M640074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a sample to play around with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET LongMonthNames='January;February;March;April;May;June;July;August;September;October;November;December';&lt;/STRONG&gt;&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 *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; MonthName(Date) as MonthYear;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; MakeDate(Year, Num(Month(Date#(Month, 'MMMM'))), 1) as Date;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Year, Month, Sales&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, January, 343&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, February, 420&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, March, 492&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, April, 234&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, May, 542&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, June, 432&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, July, 654&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, August, 234&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, September, 323&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, October, 653&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, November, 653&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2014, December, 658&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&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/115865_Capture.PNG" style="height: 259px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 00:10:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022038#M640074</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-25T00:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022039#M640075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny, for some reason your solution didnt show up before Johns post! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/shocked.png" /&gt;. I dont know what happened.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But thank you so much for your help. You have been very helpful before as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 00:16:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022039#M640075</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-25T00:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022040#M640076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; As long as you get to what you are looking for, we don't mind who get the right answer. If you still feel my answer is useful, you can mark it as a helpful answer (but you don't have to)&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14806"&gt;Qlik Community Tip: Marking Replies as Correct or Helpful&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 00:20:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022040#M640076</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-25T00:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022041#M640077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, strange, I didn't see it before I posted either, or even after I posted for quite some time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(edit: Ah, the forum updates the time when I update the message.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 00:39:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022041#M640077</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2016-02-25T00:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022042#M640078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It popped up from no where? Strange, I was not even put for moderation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 00:42:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022042#M640078</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-25T00:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022043#M640079</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;It could be my mistake i am not sure though. When i saw a notification for the first time i clicked and Johns post showed up so i thought he is the first person replied to the post. And when i replied to him the page get refreshed and then i saw your two post before Johns post. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;ahmed100&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 00:55:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022043#M640079</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-25T00:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022044#M640080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its all good ahmed &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 01:03:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022044#M640080</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-25T01:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022045#M640081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MakeDate(Year, Num(Month(Date#(Month, 'MMMM'))), 1) as Date; try this one it is working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 05:02:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022045#M640081</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-25T05:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022046#M640082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys, I am having a little trouble calculating Previous Year sales and Year over Year Sales. In the set analysis, Previous year sales calculation I am using a variable (vPreviousYear) which is basically (Current/Max Year - 1) and also trying to use Month in that set analysis but its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Calculation is for Previous Year: sum({&amp;lt;[Year]={$(vPreviousYear)}, [Month]={&amp;lt;=$(vMaxMonth)}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This calculation will basically help me to select and Year and month and get the value of Current selected Year and Month value and also for the Previous year sales value for the same month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attach file and let me know if you have any question.&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>Fri, 26 Feb 2016 00:52:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022046#M640082</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-26T00:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022047#M640083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this what you are looking for:&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/116058_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expressions:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Sum(Sales)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=If(Sum(Sales) &amp;gt; 0, Above(Sum({1}Sales)))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=[Current Year Sales]/[Previous Year Sales] - 1&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2016 01:00:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022047#M640083</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-26T01:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022048#M640084</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 but its not working when i select Month January and Year 2016. I should get January 2016 as the current selection and January 2015 as previous year sales.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you attach the application here?&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>Fri, 26 Feb 2016 01:17:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022048#M640084</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2016-02-26T01:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Date with string problem</title>
      <link>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022049#M640085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this for your second expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=If(Sum(Sales) &amp;gt; 0, Above(Sum({&amp;lt;Year&amp;gt;}Sales)))&lt;/STRONG&gt;&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/116059_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2016 01:20:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-with-string-problem/m-p/1022049#M640085</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-26T01:20:54Z</dc:date>
    </item>
  </channel>
</rss>

