<?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 creating a time series in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202920#M387011</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure what I'm doing wrong currently or maybe my qlik app isn't reading my column as a date field for some reason, cause I want to create a time series for my app and my output is the total number of records for thast selection, for instance if I make the dimension the year or if I make it the month see image below here is the output I get.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="time.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/139704_time.png" style="height: 673px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression is above the image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a master calendar in order to create the day, week, month and year but the app isn't reading all of this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gee:&lt;/P&gt;&lt;P&gt;LOAD [Year of Entrance], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; idnumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; surname, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; firstnames, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GenderDesc, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; email, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cellno, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#([Date Unsubscribed],'YYYY/MM/DD')) as [Date Unsubscribed]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[CC Entry File 2013 .xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;jee:&lt;/P&gt;&lt;P&gt;concatenate(gee)&lt;/P&gt;&lt;P&gt;LOAD [Year of Entrance], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; idnumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; surname, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; firstnames, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GenderDesc, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; email, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cellno, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date Unsubscribed]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[CC Entry File 2014.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is PrintFile_12_201603011306);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vee:&lt;/P&gt;&lt;P&gt;concatenate(gee)&lt;/P&gt;&lt;P&gt;LOAD [Year of Entrance], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; idnumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; surname, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; firstnames, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GenderDesc, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; email, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cellno, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date Unsubscribed]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[CC Entry File 2015.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is PrintFile_20_201603011238);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Date([Date Unsubscribed]) as [Date Unsubscribed],&lt;/P&gt;&lt;P&gt;Year([Date Unsubscribed]) as Year,&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month([Date Unsubscribed])/3) as Quarter,&lt;/P&gt;&lt;P&gt;Month([Date Unsubscribed]) as Month,&lt;/P&gt;&lt;P&gt;Day([Date Unsubscribed]) as Day,&lt;/P&gt;&lt;P&gt;Week([Date Unsubscribed]) as Week;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Date(MinDate + Iterno() -1) as [Date Unsubscribed]&lt;/P&gt;&lt;P&gt;While(MinDate + Iterno() -1)&amp;lt;=Num(MaxDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Min([Date Unsubscribed]) as MinDate,&lt;/P&gt;&lt;P&gt;Max([Date Unsubscribed]) as MaxDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident gee; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fee:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;load*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;resident gee;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table gee;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Oct 2016 12:35:47 GMT</pubDate>
    <dc:creator>kaygee28</dc:creator>
    <dc:date>2016-10-05T12:35:47Z</dc:date>
    <item>
      <title>creating a time series</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202920#M387011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure what I'm doing wrong currently or maybe my qlik app isn't reading my column as a date field for some reason, cause I want to create a time series for my app and my output is the total number of records for thast selection, for instance if I make the dimension the year or if I make it the month see image below here is the output I get.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="time.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/139704_time.png" style="height: 673px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression is above the image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a master calendar in order to create the day, week, month and year but the app isn't reading all of this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gee:&lt;/P&gt;&lt;P&gt;LOAD [Year of Entrance], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; idnumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; surname, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; firstnames, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GenderDesc, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; email, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cellno, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#([Date Unsubscribed],'YYYY/MM/DD')) as [Date Unsubscribed]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[CC Entry File 2013 .xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;jee:&lt;/P&gt;&lt;P&gt;concatenate(gee)&lt;/P&gt;&lt;P&gt;LOAD [Year of Entrance], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; idnumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; surname, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; firstnames, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GenderDesc, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; email, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cellno, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date Unsubscribed]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[CC Entry File 2014.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is PrintFile_12_201603011306);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vee:&lt;/P&gt;&lt;P&gt;concatenate(gee)&lt;/P&gt;&lt;P&gt;LOAD [Year of Entrance], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; idnumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; surname, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; firstnames, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GenderDesc, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; email, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cellno, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date Unsubscribed]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[CC Entry File 2015.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is PrintFile_20_201603011238);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Date([Date Unsubscribed]) as [Date Unsubscribed],&lt;/P&gt;&lt;P&gt;Year([Date Unsubscribed]) as Year,&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month([Date Unsubscribed])/3) as Quarter,&lt;/P&gt;&lt;P&gt;Month([Date Unsubscribed]) as Month,&lt;/P&gt;&lt;P&gt;Day([Date Unsubscribed]) as Day,&lt;/P&gt;&lt;P&gt;Week([Date Unsubscribed]) as Week;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Date(MinDate + Iterno() -1) as [Date Unsubscribed]&lt;/P&gt;&lt;P&gt;While(MinDate + Iterno() -1)&amp;lt;=Num(MaxDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Min([Date Unsubscribed]) as MinDate,&lt;/P&gt;&lt;P&gt;Max([Date Unsubscribed]) as MaxDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident gee; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fee:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;load*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;resident gee;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table gee;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2016 12:35:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202920#M387011</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2016-10-05T12:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: creating a time series</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202921#M387012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried repeating the date(date#)) expression for all occurences of the date field?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#([Date Unsubscribed],'YYYY/MM/DD')) as [Date Unsubscribed]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at this post&amp;nbsp; &lt;A href="https://community.qlik.com/qlik-blogpost/2954"&gt;Why don’t my dates work?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2016 13:05:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202921#M387012</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2016-10-05T13:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: creating a time series</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202922#M387013</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;remove this part from Your script, this is overkill if you do a resident load from gee. Min and Max will here transfer Your&lt;/P&gt;&lt;P&gt;MinDate MaxDate to a numeric value and that maybe messup the calendar for you.&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Date(MinDate + Iterno() -1) as [Date Unsubscribed]&lt;/P&gt;&lt;P&gt;While(MinDate + Iterno() -1)&amp;lt;=Num(MaxDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOAD &lt;/P&gt;&lt;P&gt;Min([Date Unsubscribed]) as MinDate,&lt;/P&gt;&lt;P&gt;Max([Date Unsubscribed]) as MaxDate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2016 13:10:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202922#M387013</guid>
      <dc:creator>stabben23</dc:creator>
      <dc:date>2016-10-05T13:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: creating a time series</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202923#M387014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay guys thanks a lot for your help, Colin your option didn't work cause it makes all my list boxes disappear for some reason, while Staffan solved 60% of my problem so I can get graphs for all the Entrances except for the 2013 entrance in this field &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Year of Entrance], so I'm guessing cause I loaded 2013 first then this code has an issue,&lt;/SPAN&gt;&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;gee:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD [Year of Entrance],&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; idnumber,&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; surname,&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; firstnames,&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; GenderDesc,&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; email,&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; cellno,&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; Date(Date#([Date Unsubscribed],'YYYY/MM/DD')) as [Date Unsubscribed]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[CC Entry File 2013 .xlsx]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2016 13:26:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202923#M387014</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2016-10-05T13:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: creating a time series</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202924#M387015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please see app attached to see what I'm talking about. !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2016 13:44:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202924#M387015</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2016-10-05T13:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: creating a time series</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202925#M387016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hagiso,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You could try adding an "exit script;" statement after loading the 2013 data into gee:&amp;nbsp; to view the data you have loaded at this stage to see if that Date Unsubscribed field holds valid dates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the format of the Date Unsubscribed data different in the CC Entry File 2013 spreadsheet compared to the other year's data?&lt;/P&gt;&lt;P&gt;Is this the reason you are using a &lt;STRONG&gt;date(date# ))&lt;/STRONG&gt; function for 2013 but not for the other years?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are not loading valid dates for 2013, then the calendar processing in the while loop will not process the 2013 data correctly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2016 13:59:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202925#M387016</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2016-10-05T13:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: creating a time series</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202926#M387017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Colin Thanks alot for your help, I verified the date field in the 2013 file and it seems to be correct and consistent with the other files so not really sure what the problem might be, with regards to utilizing the date(date#() function, if i declare the statement throughout the load statements then my list boxes disappear and hence I cannot make the necessary selections for my charts. maybe I'll need to do 2013 on its own.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2016 14:57:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202926#M387017</guid>
      <dc:creator>kaygee28</dc:creator>
      <dc:date>2016-10-05T14:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: creating a time series</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202927#M387018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the date field for 2013 is consistent with the other files, then surely the date function should be the same for all files you are loading.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2016 08:38:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-time-series/m-p/1202927#M387018</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2016-10-06T08:38:33Z</dc:date>
    </item>
  </channel>
</rss>

