<?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: Error: Table not Found in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917585#M318105</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the excel file I use&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Jul 2015 13:12:44 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-07-28T13:12:44Z</dc:date>
    <item>
      <title>Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917576#M318096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I am trying to make a master calendar with time.I have loaded an excel file that includes a field with timestamp&amp;nbsp; but when I am trying to load the data, it throws error "Table not Found". Do you have any idea where is the problem? &lt;BR /&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 10:24:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917576#M318096</guid>
      <dc:creator />
      <dc:date>2015-07-28T10:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917577#M318097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can please share the script ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 11:30:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917577#M318097</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-07-28T11:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917578#M318098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Share your script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 11:30:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917578#M318098</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2015-07-28T11:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917579#M318099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dates:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; Floor(Min(TimeStamp#(mytable, 'MM/DD/YYYY hh:mm:ss'))) AS MinDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Floor(Max(TimeStamp#(mytable, 'MM/DD/YYYY hh:mm:ss'))) AS MaxDate&lt;/P&gt;&lt;P&gt;RESIDENT emails;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LET vMinDate = FieldValue('MinDate', 1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LET vMaxDate = FieldValue('MaxDate', 1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;TempCalendar:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD DayStart(TimeStamp($(vMinDate) + (RecNo()/60/60/24) + (IterNo() -1))) AS DateNumber,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TimeStamp($(vMinDate) + (RecNo()/60/60/24) + (IterNo() -1)) AS TempDate&lt;/P&gt;&lt;P&gt;AYTOGENERATE 86399 WHILE Num($(vMinDate) + IterNo() -1) &amp;lt;= Num($(vMaxDate));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Calendar: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;TempDate AS mytable,&lt;/P&gt;&lt;P&gt;Hour(TempDate) AS CalenderHour,&lt;/P&gt;&lt;P&gt;Minute(TempDate) AS CalenderMinute,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Date( Floor(TempDate)) AS CalendarDate,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Day(TempDate) AS CalendarDayOfMonth,&lt;/P&gt;&lt;P&gt;Month(TempDate) AS CalendarMonthName,&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month(TempDate)/3) AS CalendarQuarter,&lt;/P&gt;&lt;P&gt;Year(TempDate) AS CalendarYear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;'Q' &amp;amp; Ceil(Month(TempDate)/3) &amp;amp; '/' &amp;amp; Year(TempDate) AS CalendarQuarterAndYear, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Year(TempDate) &amp;amp; '/' &amp;amp; 'Q' &amp;amp; Ceil(Month(TempDate)/3) AS CalendarYearAndQuarter,&lt;/P&gt;&lt;P&gt;'Wed ' &amp;amp; DayStart(WeekStart(TempDate) + 3) as CalendarWednesdays&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;RESIDENT TempCalendar ORDER BY TempDate ASC; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;DROP TABLE TempCalendar;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;DROP Table Dates;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// I found the code by a post here and I made some modifications but I don't understand whythe table can't be found.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 12:35:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917579#M318099</guid>
      <dc:creator />
      <dc:date>2015-07-28T12:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917580#M318100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you share the sample data too??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you need to check whether the data is in the date format or not otherwise the date function won't work on top of that....&lt;/P&gt;&lt;P&gt;check with the Mindate, Maxdate ?? whether the its on date format or not &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 12:42:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917580#M318100</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-07-28T12:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917581#M318101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which line is triggering the error?&lt;/P&gt;&lt;P&gt;Does the email table exist before this script is run?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 12:43:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917581#M318101</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-07-28T12:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917582#M318102</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;Is 'aytogenerate' a valid syntax? Possible that the table therefore is not created?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 12:50:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917582#M318102</guid>
      <dc:creator>puttemans</dc:creator>
      <dc:date>2015-07-28T12:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917583#M318103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the beggining. I have loaded the excel file with two fields: 1.mailinglist 2.mytable (contains timestamp). The work sheet in excel file is called mails. I don't find how to upload the excel file.&lt;/P&gt;&lt;P&gt;The data format is: M/D/YYYY h:mm:ss in Greek (Also I correct the code at this part but it's not working again)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your quick response&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 13:07:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917583#M318103</guid>
      <dc:creator />
      <dc:date>2015-07-28T13:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917584#M318104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be you can try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set the variable vMinDate= to minimum date and vMaxDate to your maximum date from your excel file (exclude the time part)&lt;/P&gt;&lt;P&gt;/*&lt;/P&gt;&lt;P&gt;Dates:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Floor(Min(TimeStamp#(mytable, 'MM/DD/YYYY hh:mm:ss'))) AS MinDate,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Floor(Max(TimeStamp#(mytable, 'MM/DD/YYYY hh:mm:ss'))) AS MaxDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESIDENT emails;&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMinDate =num(date(date#('01/20/2005','MM/DD/YYYY'),'MM/DD/YYYY'));&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMaxDate = num(date(date#('07/28/2015','MM/DD/YYYY'), 'MM/DD/YYYY'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TempCalendar:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD $(vMinDate) + Iterno()-1 As Num,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date($(vMinDate) + IterNo() - 1) as TempDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AutoGenerate 1 While $(vMinDate) + IterNo() -1 &amp;lt;= $(vMaxDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TempDate AS mytable,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hour(TempDate) AS CalenderHour,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Minute(TempDate) AS CalenderMinute,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date( Floor(TempDate)) AS CalendarDate,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Day(TempDate) AS CalendarDayOfMonth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Month(TempDate) AS CalendarMonthName,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month(TempDate)/3) AS CalendarQuarter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year(TempDate) AS CalendarYear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month(TempDate)/3) &amp;amp; '/' &amp;amp; Year(TempDate) AS CalendarQuarterAndYear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year(TempDate) &amp;amp; '/' &amp;amp; 'Q' &amp;amp; Ceil(Month(TempDate)/3) AS CalendarYearAndQuarter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Wed ' &amp;amp; DayStart(WeekStart(TempDate) + 3) as CalendarWednesdays&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESIDENT TempCalendar ORDER BY TempDate ASC;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE TempCalendar;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//DROP Table Dates;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 13:11:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917584#M318104</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-07-28T13:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917585#M318105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the excel file I use&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 13:12:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917585#M318105</guid>
      <dc:creator />
      <dc:date>2015-07-28T13:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917586#M318106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your response! &lt;BR /&gt;I tried that but it still throws me error.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="94269" alt="error.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/94269_error.png" style="height: 349px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;maybe the problem is in the excel file. I submit it if you want to take a look&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 13:22:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917586#M318106</guid>
      <dc:creator />
      <dc:date>2015-07-28T13:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917587#M318107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I repeat = does the email table exists before this script is run?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 13:26:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917587#M318107</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-07-28T13:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917588#M318108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please find the attachment for the solution :&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 13:38:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917588#M318108</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-07-28T13:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917589#M318109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for your response! The problem was that I hadn't load the table before I ran the script! &lt;BR /&gt;But I now I have problem with the hours! It uploads the dates but not hours and minutes. If you have any suggestions I would be grateful &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 14:54:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917589#M318109</guid>
      <dc:creator />
      <dc:date>2015-07-28T14:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917590#M318110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suggest you STORE your temporary tables to files and check what data you have in your TempDate field in in the TempCalendar table. probably there's something wrong with this field..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 14:59:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917590#M318110</guid>
      <dc:creator>johanlindell</dc:creator>
      <dc:date>2015-07-28T14:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917591#M318111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you saw my attachment ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 04:34:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917591#M318111</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-07-29T04:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error: Table not Found</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917592#M318112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I saw it later! Thank you very very very much! I am working on it! &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, 29 Jul 2015 10:22:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Table-not-Found/m-p/917592#M318112</guid>
      <dc:creator />
      <dc:date>2015-07-29T10:22:35Z</dc:date>
    </item>
  </channel>
</rss>

