<?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: Scenario Help. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929026#M954664</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 can for example in your master calendar create a YearFilter field which is NULL when in the future and use this field in your listbox. So, you will not see the future years but they are still present in the data model.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Nov 2015 07:42:27 GMT</pubDate>
    <dc:creator>vincent_ardiet</dc:creator>
    <dc:date>2015-11-24T07:42:27Z</dc:date>
    <item>
      <title>Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929014#M954652</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;i have one table in which there is SurveyTaskId,DateDue and Datesubmitted field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(DateSubmitted &amp;lt;= DateDue,&amp;nbsp;&amp;nbsp; 'Completed on time',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; IF(DateSubmitted &amp;gt; DateDue , 'Submitted Late',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(ISNULL(DateSubmitted) OR LEN(DateSubmitted) = 0, 'OverDue')))&amp;nbsp; AS [TaskStatus],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;right now my master calender is working on Date Submitted, so when i am selecting year, Completing on time and Submitted date are coming but overdue is not bcoz they are nulls i think.. how i can do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ouput, Overdue should Also come when i m selecting any year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ABy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 07:18:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929014#M954652</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-11-18T07:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929015#M954653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi abhay,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Try something like,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IF(DateSubmitted &amp;lt;= DateDue,&amp;nbsp; 'Completed on time',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; IF(DateSubmitted &amp;gt; DateDue , 'Submitted Late',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF( &lt;EM style="color: #ff0000;"&gt;LEN(Trim(DateSubmitted))&lt;/EM&gt; = 0, 'OverDue')))&amp;nbsp; AS [TaskStatus],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Let me know,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 07:42:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929015#M954653</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-11-18T07:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929016#M954654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for revert, This is some logic is working...&lt;/P&gt;&lt;P&gt;i want below&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;right now my master calender is working on Date Submitted, so when i am selecting year, Completing on time and Submitted date are coming but overdue is not bcoz they are nulls i think.. how i can do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Ouput= Overdue should Also come when i m selecting any year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 07:56:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929016#M954654</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-11-18T07:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929017#M954655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhay,&lt;/P&gt;&lt;P&gt;Can you explain us your datamodel or give a screenshot of it?&lt;/P&gt;&lt;P&gt;You issue is maybe link to the way your data are organized.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vincent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 07:56:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929017#M954655</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2015-11-18T07:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929018#M954656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are using &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DateSubmitted as your master calendar field. If DateSubmitted field is blank, you can not see the Overdue when you click any year. Do you have any blank cells in master calendar? Co&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;uld you post your application.?&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;Ouput= Overdue should Also come when i m selecting any year&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Also, you have mentioned that the overdue should display for any year. I don't understand the concept here. Please elaborate. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 08:02:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929018#M954656</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-11-18T08:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929019#M954657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Hi Vincent,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;this is only one table.. no other table in data model&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;i Tamil Nagaraj,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;yes right and concept is in Datesubmit there are null dates as well, or if i m not selecting any date than as on overdue task are showing.. but i want when i select any calendar year created from datesubmitted overdue also come..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Sorry i can't post the Sample App.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 08:07:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929019#M954657</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-11-18T08:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929020#M954658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, &lt;/P&gt;&lt;P&gt;Maybe, add today as date submitted for the one that don't have a date, but after you apply the above logic, use a proceeding load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can use your TaskStatus flag to exclude the overdue one when you don't want to see them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 08:23:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929020#M954658</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2015-11-18T08:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929021#M954659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you need to create a dummy date for the blank cells. But I don't think this is a good idea. You need to modify your data model and need logic. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 08:26:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929021#M954659</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-11-18T08:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929022#M954660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you use your expression?&lt;/P&gt;&lt;P&gt;In a straight table?&lt;/P&gt;&lt;P&gt;What are the dimensions you are using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 08:39:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929022#M954660</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2015-11-18T08:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929023#M954661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can we try sth like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=count({&amp;lt;Status={'Overdue'}, Year={'=$(=year(DueDate))'&amp;gt;} SurveytaskID)&amp;nbsp; //Correct syntax if required&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 08:56:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929023#M954661</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-18T08:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929024#M954662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I have not seen that you were in the script.&lt;/P&gt;&lt;P&gt;So, you can add a new field DateReported like this:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ISNULL&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateSubmitted&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateDue&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateSubmitted&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateReported &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you base your calendar on this field instead of DateSubmitted.&lt;/P&gt;&lt;P&gt;And maybe also in your TaskStatus expression start to test if DateSubmitted is NULL first:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ISNULL&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateSubmitted&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;OR&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;LEN&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateSubmitted&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) = 0, 'OverDue',&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateSubmitted&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateDue&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 'Completed on time',&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateSubmitted&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &amp;gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateDue&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; , 'Submitted Late')))&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[TaskStatus]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2015 14:11:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929024#M954662</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2015-11-18T14:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929025#M954663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Vincent,&lt;/P&gt;&lt;P&gt;it is working but one issue i am facing is that, due date have dates for year 2020, so now each dates is consolidated so at filter year are showing till 2020 from 2012.. which not making sense.. i have created filter to segregate it for dashboard, but is there any other way as well?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2015 05:59:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929025#M954663</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-11-24T05:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929026#M954664</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 can for example in your master calendar create a YearFilter field which is NULL when in the future and use this field in your listbox. So, you will not see the future years but they are still present in the data model.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2015 07:42:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929026#M954664</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2015-11-24T07:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929027#M954665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can u tell me pls?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2015 08:16:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929027#M954665</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-11-24T08:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Scenario Help.</title>
      <link>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929028#M954666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know the script of you mastercalendar...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First create a variable:&lt;/P&gt;&lt;P&gt;Let curYear=Year(Today());&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, when you're generating you're calendar in the LOAD statement you will have something like this:&lt;/P&gt;&lt;P&gt;if(Year&amp;lt;=$(curYear),Year) as YearFilter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2015 08:23:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scenario-Help/m-p/929028#M954666</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2015-11-24T08:23:06Z</dc:date>
    </item>
  </channel>
</rss>

