<?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: Need Help with Creating Start and End Date Variables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-Help-with-Creating-Start-and-End-Date-Variables/m-p/248318#M1182291</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Don't get frustated,you have posted ur doubts at the right place, Ppl here are very helpful. Its a very simple prob, and has a very simple solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Which every QV developer solves by creating a&lt;STRONG&gt; master table.You find a master table in every QV application, if u check any&amp;nbsp; sample QV application u can find on the QV website u'll see it , u'll find it in the script editor.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1st u have a create a temp table to find min and max date .Once that is found, u can auto generate the dates b/w min and max.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me paste a sample here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Temp:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Load&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MIN(&lt;STRONG&gt;yourdatefield&lt;/STRONG&gt;) as minDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX(&lt;STRONG&gt;yourdatefield&lt;/STRONG&gt;) as maxDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;RESIDENT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; yourtablewhich_contains_the_date_value;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Let vMinDate = NUM(PEEK('minDate',0,'Temp'));&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Let vMaxDate = NUM(PEEK('maxDate',0,'Temp'));&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//Let vCurrentCamp = NUM(PEEK('maxCampYear',0,'Temp'));&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP TABLE Temp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//varMinDate to varMaxDate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TempCalendar:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vMinDate)+IterNo()-1 AS Num,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date($(vMinDate)+IterNo()-1) AS TempDate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;AUTOGENERATE 1 WHILE $(vMinDate)+IterNo()-1&amp;lt;= $(vMaxDate);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//Building the master calendar with most date dimensions&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MasterCalendar:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TempDate AS TRANSACTIONDATE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(TempDate) as Year,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q'&amp;amp; CEIL(MONTH(TempDate)/3) as QUARTER,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(TempDate) as Month,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pick(num#(text(Date(TempDate,'M'))),9,10,11,12,1,2,3,4,5,6,7,8) as MonthOrder,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DUAL(text(Month(TempDate)),pick(num#(text(Date(TempDate,'M'))),9,10,11,12,1,2,3,4,5,6,7,8)) as MonthName,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; week(TempDate) as Week,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DUAL(weekstart(TempDate,0,-1) &amp;amp; ' - ' &amp;amp; weekend(TempDate,0,-1),weekstart(TempDate,0,-1)) AS Week,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(TempDate) as Day,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InYearToDate(TempDate,'$(vToday)',0) AS CurYearToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InQuarterToDate(TempDate,'$(vToday)',0) AS CurQuarterToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InMonthToDate(TempDate,'$(vToday)',0) AS CurMonthToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InYearToDate(TempDate,'$(vLastYearToday)',0) AS LastYearToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InQuarterToDate(TempDate,'$(vLastYearToday)',0) AS LastQuarterToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InMonthToDate(TempDate,'$(vLastYearToday)',0) AS LastMonthToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q'&amp;amp; CEIL(MONTH(TempDate)/3)&amp;amp;'-'&amp;amp;Year(TempDate) AS QuarterYear,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(monthstart(TempDate),'MMM-YYYY') AS MonthYear&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(TempDate)&amp;amp;'-'&amp;amp;Year(TempDate) AS WeekYear,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; weekday(TempDate) as WeekDay&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;RESIDENT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TempCalendar&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ORDER BY &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TempDate Asc;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP TABLE TempCalendar;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H2 style="font-size: 2em; margin-right: 100px; font-weight: normal; color: #252525; width: auto;"&gt;&lt;EM&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/157532#157532" style="color: #252525; width: auto;"&gt;&lt;BR /&gt;&lt;/A&gt;&lt;/EM&gt;&lt;/H2&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Nov 2011 19:41:21 GMT</pubDate>
    <dc:creator>swarup_malli</dc:creator>
    <dc:date>2011-11-22T19:41:21Z</dc:date>
    <item>
      <title>Need Help with Creating Start and End Date Variables</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help-with-Creating-Start-and-End-Date-Variables/m-p/248317#M1182290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I've spent way too much time trying to search for this and am getting nowhere.&amp;nbsp; Exactly HOW do I set up start and end date variables for use with a slider/calendar object?&amp;nbsp; What I need is for the end user to be able to select a start date, then an end date, and results will return within those dates.&amp;nbsp; I can do this in SSRS just fine, but with Qlikview, not so much. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Folks, I need a step-by-step which a newbie can understand.&amp;nbsp; I need this ASAP.&amp;nbsp; If I sound frustrated then you're correct - I don't have all day to figure this out and nothing I've tried works.&amp;nbsp; There's nothing about this anywhere in the tutorial that I can find, and i'm to the point where I just need results.&amp;nbsp; There needs to be a place where this is listed somehow. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone list the steps, or at least point me in the direction of a very good resource which will make sense to a newbie?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 18:31:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help-with-Creating-Start-and-End-Date-Variables/m-p/248317#M1182290</guid>
      <dc:creator />
      <dc:date>2011-11-22T18:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Creating Start and End Date Variables</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help-with-Creating-Start-and-End-Date-Variables/m-p/248318#M1182291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Don't get frustated,you have posted ur doubts at the right place, Ppl here are very helpful. Its a very simple prob, and has a very simple solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Which every QV developer solves by creating a&lt;STRONG&gt; master table.You find a master table in every QV application, if u check any&amp;nbsp; sample QV application u can find on the QV website u'll see it , u'll find it in the script editor.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1st u have a create a temp table to find min and max date .Once that is found, u can auto generate the dates b/w min and max.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me paste a sample here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Temp:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Load&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MIN(&lt;STRONG&gt;yourdatefield&lt;/STRONG&gt;) as minDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX(&lt;STRONG&gt;yourdatefield&lt;/STRONG&gt;) as maxDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;RESIDENT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; yourtablewhich_contains_the_date_value;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Let vMinDate = NUM(PEEK('minDate',0,'Temp'));&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Let vMaxDate = NUM(PEEK('maxDate',0,'Temp'));&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//Let vCurrentCamp = NUM(PEEK('maxCampYear',0,'Temp'));&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP TABLE Temp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//varMinDate to varMaxDate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TempCalendar:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vMinDate)+IterNo()-1 AS Num,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date($(vMinDate)+IterNo()-1) AS TempDate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;AUTOGENERATE 1 WHILE $(vMinDate)+IterNo()-1&amp;lt;= $(vMaxDate);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//Building the master calendar with most date dimensions&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MasterCalendar:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TempDate AS TRANSACTIONDATE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(TempDate) as Year,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q'&amp;amp; CEIL(MONTH(TempDate)/3) as QUARTER,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(TempDate) as Month,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pick(num#(text(Date(TempDate,'M'))),9,10,11,12,1,2,3,4,5,6,7,8) as MonthOrder,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DUAL(text(Month(TempDate)),pick(num#(text(Date(TempDate,'M'))),9,10,11,12,1,2,3,4,5,6,7,8)) as MonthName,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; week(TempDate) as Week,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DUAL(weekstart(TempDate,0,-1) &amp;amp; ' - ' &amp;amp; weekend(TempDate,0,-1),weekstart(TempDate,0,-1)) AS Week,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(TempDate) as Day,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InYearToDate(TempDate,'$(vToday)',0) AS CurYearToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InQuarterToDate(TempDate,'$(vToday)',0) AS CurQuarterToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InMonthToDate(TempDate,'$(vToday)',0) AS CurMonthToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InYearToDate(TempDate,'$(vLastYearToday)',0) AS LastYearToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InQuarterToDate(TempDate,'$(vLastYearToday)',0) AS LastQuarterToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; InMonthToDate(TempDate,'$(vLastYearToday)',0) AS LastMonthToDate,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q'&amp;amp; CEIL(MONTH(TempDate)/3)&amp;amp;'-'&amp;amp;Year(TempDate) AS QuarterYear,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(monthstart(TempDate),'MMM-YYYY') AS MonthYear&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(TempDate)&amp;amp;'-'&amp;amp;Year(TempDate) AS WeekYear,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; weekday(TempDate) as WeekDay&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;RESIDENT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TempCalendar&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ORDER BY &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TempDate Asc;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP TABLE TempCalendar;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H2 style="font-size: 2em; margin-right: 100px; font-weight: normal; color: #252525; width: auto;"&gt;&lt;EM&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/157532#157532" style="color: #252525; width: auto;"&gt;&lt;BR /&gt;&lt;/A&gt;&lt;/EM&gt;&lt;/H2&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 19:41:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help-with-Creating-Start-and-End-Date-Variables/m-p/248318#M1182291</guid>
      <dc:creator>swarup_malli</dc:creator>
      <dc:date>2011-11-22T19:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Creating Start and End Date Variables</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help-with-Creating-Start-and-End-Date-Variables/m-p/248319#M1182292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this post, is very helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/162686#162686"&gt;http://community.qlik.com/message/162686#162686&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Swarup&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 19:43:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help-with-Creating-Start-and-End-Date-Variables/m-p/248319#M1182292</guid>
      <dc:creator>swarup_malli</dc:creator>
      <dc:date>2011-11-22T19:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Creating Start and End Date Variables</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Help-with-Creating-Start-and-End-Date-Variables/m-p/248320#M1182293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if u could upload your sample application, i can assist u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Swarup&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 19:50:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Help-with-Creating-Start-and-End-Date-Variables/m-p/248320#M1182293</guid>
      <dc:creator>swarup_malli</dc:creator>
      <dc:date>2011-11-22T19:50:50Z</dc:date>
    </item>
  </channel>
</rss>

