<?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 Join causing Table not found error on load. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173980#M42973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;Thanks a lot...u really saved a lot of time for me...&lt;/P&gt;&lt;P&gt;I wasnt aware of the keep syntax...&lt;/P&gt;&lt;P&gt;the script worked like a charm...&lt;/P&gt;&lt;P&gt;the final script is as below:&lt;/P&gt;&lt;P&gt;we need not modify the column names for the top offers...the keep part works fine...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;MRC_TABLE:&lt;BR /&gt;Load&lt;BR /&gt; right(MRC,4) as MRC,&lt;BR /&gt; NAME,&lt;BR /&gt; WEEK,&lt;BR /&gt; date(floor(WEEK_START_DATE)) as WEEK_START_DATE,&lt;BR /&gt; date(floor(WEEK_END_DATE)) as WEEK_END_DATE,&lt;BR /&gt; PROVIDER,&lt;BR /&gt; CAT_PROVIDER,&lt;BR /&gt; ORDER_COUNT,&lt;BR /&gt; REVENUE;&lt;BR /&gt;SQL select mrc,name,to_char(order_date,'IW')-34 Week,TRUNC(order_date, 'IW') Week_Start_Date,&lt;BR /&gt;NEXT_DAY(TRUNC(order_date,'IW'),'SUNDAY') WEEK_END_DATE, provider, cat_provider,count(order_count) order_count,sum(revenue) revenue&lt;BR /&gt;from&lt;BR /&gt;(select r.mrc,a.name,trunc(r.CREATE_DATE) order_date,count(r.ORDER_OID) order_count,qscp.SVC_PROV provider,qscp.SVC_CAT_PROV cat_provider,sum(r.INV_REVENUE) revenue&lt;BR /&gt;from revenue_tab r,qc_report_scp_master qscp,(select NAME,'wfad'||oid mrc from advertisement) a&lt;BR /&gt;where r.SCP_OID = qscp.OID&lt;BR /&gt;and a.mrc = r.MRC&lt;BR /&gt;and a.mrc in(select 'wfad'||oid_advertisement from advertisement_zone a where a.OID_ZONE=2 )&lt;BR /&gt;and trunc(r.CREATE_DATE) between to_date('08/30/2010','MM/DD/YYYY') and trunc(sysdate)&lt;BR /&gt;group by r.mrc,a.name,trunc(r.CREATE_DATE),qscp.SVC_PROV,qscp.SVC_CAT_PROV)&lt;BR /&gt;group by mrc,name,to_char(order_date,'IW'),TRUNC(order_date, 'IW'),NEXT_DAY(TRUNC(order_date,'IW'),'SUNDAY'), provider,cat_provider&lt;BR /&gt;order by mrc,to_char(order_date,'IW'),provider,cat_provider;&lt;BR /&gt;&lt;BR /&gt;TopOffers:&lt;BR /&gt;INNER KEEP (MRC_TABLE)&lt;BR /&gt;LOAD Rowno() as Type,&lt;BR /&gt; date(date#(Date,'MMM DD, YYYY'),'MM/DD/YYYY') as WEEK_START_DATE,&lt;BR /&gt; [On-Site Ads] as Ads,&lt;BR /&gt; Instances as IMPRESSIONS,&lt;BR /&gt; [Ad Clicks] as CLICKS&lt;BR /&gt;FROM&lt;BR /&gt;&lt;Q&gt;&lt;BR /&gt;(ooxml, embedded labels, header is 2 lines, table is Sheet1);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;TempMaxType:&lt;BR /&gt;LOAD&lt;BR /&gt; Max(Type) as MaxType //Find how many rows are in the field "Ads"&lt;BR /&gt;RESIDENT TopOffers;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Let vType = Peek('MaxType', 0, 'TempMaxType');&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For vIT = 1 to vType&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;TempTextFields:&lt;BR /&gt;LOAD&lt;BR /&gt; WEEK_START_DATE ,&lt;BR /&gt; Ads ,&lt;BR /&gt; IMPRESSIONS,&lt;BR /&gt; CLICKS&lt;BR /&gt;RESIDENT TopOffers&lt;BR /&gt;Where Type = $(vIT) //Read line by line&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;TempHowMany:&lt;BR /&gt;LOAD&lt;BR /&gt; Max(SubStringCount(Ads, ';;;;')) as HowMany&lt;BR /&gt;Resident TempTextFields;&lt;BR /&gt;&lt;BR /&gt;Let vHowMany = Peek('HowMany', 0, 'TempHowMany'); //How many segments are in this line&lt;BR /&gt;&lt;BR /&gt;Drop Table TempHowMany; //*** Needed to have a new table next round&lt;BR /&gt;&lt;BR /&gt;//Split lines into single segments&lt;BR /&gt;&lt;BR /&gt;For vI=1 to $(vHowMany)+1&lt;BR /&gt;&lt;BR /&gt;Let vIName = vI-1;&lt;BR /&gt;&lt;BR /&gt;Temp_Fields:&lt;BR /&gt;JOIN (TopOffers)&lt;BR /&gt;Load&lt;BR /&gt; WEEK_START_DATE,&lt;BR /&gt; Ads ,&lt;BR /&gt; IMPRESSIONS,&lt;BR /&gt; if($(vHowMany)=0,CLICKS,0) as CLICKS,&lt;BR /&gt; right(SubField(Ads, ';;;;', $(vI)),4) as MRC&lt;BR /&gt;Resident TempTextFields;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;Drop Table TempTextFields; //*** Needed to have a new table next round&lt;BR /&gt;&lt;BR /&gt;Next&lt;BR /&gt;&lt;/Q&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Nov 2010 18:52:11 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-11-05T18:52:11Z</dc:date>
    <item>
      <title>Join causing Table not found error on load.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173976#M42969</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 am trying to make a join between the MRC_table(loaded from database) and the TopOffers table(loaded from excel). But, whenever I put the join it gives me some error as Table not found. Dont know where I am going wrong. I am trying to use the script to split up a string in a row into multiple rows and then sum up the values of similar rows into one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached the qlikview file for reference. The report should display data only for the dates available in excel file. So, I need to join the MRC &amp;amp; TopOffers tables. But, due to the error, I am not able to put the join and the dates for which data is not available also get displayed.&lt;/P&gt;&lt;P&gt;Can someone help me out or give me some hints on how to use joins during loads? I would like to know where i am going wrong as I thought that a join could be made even with a single column match but I dont think thats the case in qlikview.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Nov 2010 16:06:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173976#M42969</guid>
      <dc:creator />
      <dc:date>2010-11-05T16:06:08Z</dc:date>
    </item>
    <item>
      <title>Join causing Table not found error on load.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173977#M42970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar.&lt;/P&gt;&lt;P&gt;Your table TempTextFields is build from resident table TopOffers and contains the same field names as those in TopOffers. Therefore, QlikView does not actually create a new file called TempTextFields. You can rename the fields when building TempTextFields or add a dummy field to the TempTextFields table to differentiate it from TopOffers.&lt;/P&gt;&lt;P&gt;Let me know if this resolves your issue.&lt;/P&gt;&lt;P&gt;John. &lt;I&gt;&lt;/I&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Nov 2010 16:31:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173977#M42970</guid>
      <dc:creator>john_duffy</dc:creator>
      <dc:date>2010-11-05T16:31:27Z</dc:date>
    </item>
    <item>
      <title>Join causing Table not found error on load.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173978#M42971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;Thanks for the reply...&lt;/P&gt;&lt;P&gt;I tried modifying the code in temp text fields and applied the inner join on the Top Offers Table as per the script below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;MRC_TABLE:&lt;BR /&gt;Load&lt;BR /&gt; right(MRC,4) as MRC,&lt;BR /&gt; NAME,&lt;BR /&gt; WEEK,&lt;BR /&gt; date(floor(WEEK_START_DATE)) as WEEK_START_DATE,&lt;BR /&gt; date(floor(WEEK_END_DATE)) as WEEK_END_DATE,&lt;BR /&gt; PROVIDER,&lt;BR /&gt; CAT_PROVIDER,&lt;BR /&gt; ORDER_COUNT,&lt;BR /&gt; REVENUE;&lt;BR /&gt;SQL select mrc,name,to_char(order_date,'IW')-34 Week,TRUNC(order_date, 'IW') Week_Start_Date,&lt;BR /&gt;NEXT_DAY(TRUNC(order_date,'IW'),'SUNDAY') WEEK_END_DATE, provider, cat_provider,count(order_count) order_count,sum(revenue) revenue&lt;BR /&gt;from&lt;BR /&gt;(select r.mrc,a.name,trunc(r.CREATE_DATE) order_date,count(r.ORDER_OID) order_count,qscp.SVC_PROV provider,qscp.SVC_CAT_PROV cat_provider,sum(r.INV_REVENUE) revenue&lt;BR /&gt;from revenue_tab r,qc_report_scp_master qscp,(select NAME,'wfad'||oid mrc from advertisement) a&lt;BR /&gt;where r.SCP_OID = qscp.OID&lt;BR /&gt;and a.mrc = r.MRC&lt;BR /&gt;and a.mrc in(select 'wfad'||oid_advertisement from advertisement_zone a where a.OID_ZONE=2 )&lt;BR /&gt;and trunc(r.CREATE_DATE) between to_date('08/30/2010','MM/DD/YYYY') and trunc(sysdate)&lt;BR /&gt;group by r.mrc,a.name,trunc(r.CREATE_DATE),qscp.SVC_PROV,qscp.SVC_CAT_PROV)&lt;BR /&gt;group by mrc,name,to_char(order_date,'IW'),TRUNC(order_date, 'IW'),NEXT_DAY(TRUNC(order_date,'IW'),'SUNDAY'), provider,cat_provider&lt;BR /&gt;order by mrc,to_char(order_date,'IW'),provider,cat_provider;&lt;BR /&gt;&lt;BR /&gt;TopOffers:&lt;BR /&gt;INNER JOIN (MRC_TABLE)&lt;BR /&gt;LOAD Rowno() as Type,&lt;BR /&gt; date(date#(Date,'MMM DD, YYYY'),'MM/DD/YYYY') as WEEK_START_DATE,&lt;BR /&gt; [On-Site Ads] as Ads,&lt;BR /&gt; Instances as IMPRESSIONS,&lt;BR /&gt; [Ad Clicks] as CLICKS&lt;BR /&gt;FROM&lt;BR /&gt;&lt;Q&gt;&lt;BR /&gt;(ooxml, embedded labels, header is 2 lines, table is Sheet1);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;TempMaxType:&lt;BR /&gt;LOAD&lt;BR /&gt; Max(Type) as MaxType //Find how many rows are in the field "Ads"&lt;BR /&gt;RESIDENT TopOffers;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Let vType = Peek('MaxType', 0, 'TempMaxType');&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For vIT = 1 to vType&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;TempTextFields:&lt;BR /&gt;LOAD&lt;BR /&gt; WEEK_START_DATE as WDATE,&lt;BR /&gt; Ads as Adnames,&lt;BR /&gt; IMPRESSIONS as Imps,&lt;BR /&gt; CLICKS as Clks&lt;BR /&gt;RESIDENT TopOffers&lt;BR /&gt;Where Type = $(vIT) //Read line by line&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;TempHowMany:&lt;BR /&gt;LOAD&lt;BR /&gt; Max(SubStringCount(Adnames, ';;;;')) as HowMany&lt;BR /&gt;Resident TempTextFields;&lt;BR /&gt;&lt;BR /&gt;Let vHowMany = Peek('HowMany', 0, 'TempHowMany'); //How many segments are in this line&lt;BR /&gt;&lt;BR /&gt;Drop Table TempHowMany; //*** Needed to have a new table next round&lt;BR /&gt;&lt;BR /&gt;//Split lines into single segments&lt;BR /&gt;&lt;BR /&gt;For vI=1 to $(vHowMany)+1&lt;BR /&gt;&lt;BR /&gt;Let vIName = vI-1;&lt;BR /&gt;&lt;BR /&gt;Temp_Fields:&lt;BR /&gt;JOIN (TopOffers)&lt;BR /&gt;Load&lt;BR /&gt; WDATE as WEEK_START_DATE,&lt;BR /&gt; Adnames ,&lt;BR /&gt; Imps,&lt;BR /&gt; Clks,&lt;BR /&gt; right(SubField(Adnames, ';;;;', $(vI)),4) as MRC&lt;BR /&gt;Resident TempTextFields;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;Drop Table TempTextFields; //*** Needed to have a new table next round&lt;BR /&gt;&lt;BR /&gt;Next&lt;BR /&gt;&lt;/Q&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;But, the error this time around was the same "table not found" for table top offers when i tried to select the max(type) from topoffers in the load TempMaxType.&lt;/P&gt;&lt;P&gt;I am almost there with the code except the join part.&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Nov 2010 17:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173978#M42971</guid>
      <dc:creator />
      <dc:date>2010-11-05T17:01:50Z</dc:date>
    </item>
    <item>
      <title>Join causing Table not found error on load.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173979#M42972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar.&lt;/P&gt;&lt;P&gt;Since you inner joined TopOffers to the MRC_Table the tabe TopOffers is not actually created. To have that table available in the script change the INNER JOIN to an INNER KEEP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Nov 2010 17:24:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173979#M42972</guid>
      <dc:creator>john_duffy</dc:creator>
      <dc:date>2010-11-05T17:24:32Z</dc:date>
    </item>
    <item>
      <title>Join causing Table not found error on load.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173980#M42973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;Thanks a lot...u really saved a lot of time for me...&lt;/P&gt;&lt;P&gt;I wasnt aware of the keep syntax...&lt;/P&gt;&lt;P&gt;the script worked like a charm...&lt;/P&gt;&lt;P&gt;the final script is as below:&lt;/P&gt;&lt;P&gt;we need not modify the column names for the top offers...the keep part works fine...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;MRC_TABLE:&lt;BR /&gt;Load&lt;BR /&gt; right(MRC,4) as MRC,&lt;BR /&gt; NAME,&lt;BR /&gt; WEEK,&lt;BR /&gt; date(floor(WEEK_START_DATE)) as WEEK_START_DATE,&lt;BR /&gt; date(floor(WEEK_END_DATE)) as WEEK_END_DATE,&lt;BR /&gt; PROVIDER,&lt;BR /&gt; CAT_PROVIDER,&lt;BR /&gt; ORDER_COUNT,&lt;BR /&gt; REVENUE;&lt;BR /&gt;SQL select mrc,name,to_char(order_date,'IW')-34 Week,TRUNC(order_date, 'IW') Week_Start_Date,&lt;BR /&gt;NEXT_DAY(TRUNC(order_date,'IW'),'SUNDAY') WEEK_END_DATE, provider, cat_provider,count(order_count) order_count,sum(revenue) revenue&lt;BR /&gt;from&lt;BR /&gt;(select r.mrc,a.name,trunc(r.CREATE_DATE) order_date,count(r.ORDER_OID) order_count,qscp.SVC_PROV provider,qscp.SVC_CAT_PROV cat_provider,sum(r.INV_REVENUE) revenue&lt;BR /&gt;from revenue_tab r,qc_report_scp_master qscp,(select NAME,'wfad'||oid mrc from advertisement) a&lt;BR /&gt;where r.SCP_OID = qscp.OID&lt;BR /&gt;and a.mrc = r.MRC&lt;BR /&gt;and a.mrc in(select 'wfad'||oid_advertisement from advertisement_zone a where a.OID_ZONE=2 )&lt;BR /&gt;and trunc(r.CREATE_DATE) between to_date('08/30/2010','MM/DD/YYYY') and trunc(sysdate)&lt;BR /&gt;group by r.mrc,a.name,trunc(r.CREATE_DATE),qscp.SVC_PROV,qscp.SVC_CAT_PROV)&lt;BR /&gt;group by mrc,name,to_char(order_date,'IW'),TRUNC(order_date, 'IW'),NEXT_DAY(TRUNC(order_date,'IW'),'SUNDAY'), provider,cat_provider&lt;BR /&gt;order by mrc,to_char(order_date,'IW'),provider,cat_provider;&lt;BR /&gt;&lt;BR /&gt;TopOffers:&lt;BR /&gt;INNER KEEP (MRC_TABLE)&lt;BR /&gt;LOAD Rowno() as Type,&lt;BR /&gt; date(date#(Date,'MMM DD, YYYY'),'MM/DD/YYYY') as WEEK_START_DATE,&lt;BR /&gt; [On-Site Ads] as Ads,&lt;BR /&gt; Instances as IMPRESSIONS,&lt;BR /&gt; [Ad Clicks] as CLICKS&lt;BR /&gt;FROM&lt;BR /&gt;&lt;Q&gt;&lt;BR /&gt;(ooxml, embedded labels, header is 2 lines, table is Sheet1);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;TempMaxType:&lt;BR /&gt;LOAD&lt;BR /&gt; Max(Type) as MaxType //Find how many rows are in the field "Ads"&lt;BR /&gt;RESIDENT TopOffers;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Let vType = Peek('MaxType', 0, 'TempMaxType');&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For vIT = 1 to vType&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;TempTextFields:&lt;BR /&gt;LOAD&lt;BR /&gt; WEEK_START_DATE ,&lt;BR /&gt; Ads ,&lt;BR /&gt; IMPRESSIONS,&lt;BR /&gt; CLICKS&lt;BR /&gt;RESIDENT TopOffers&lt;BR /&gt;Where Type = $(vIT) //Read line by line&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;TempHowMany:&lt;BR /&gt;LOAD&lt;BR /&gt; Max(SubStringCount(Ads, ';;;;')) as HowMany&lt;BR /&gt;Resident TempTextFields;&lt;BR /&gt;&lt;BR /&gt;Let vHowMany = Peek('HowMany', 0, 'TempHowMany'); //How many segments are in this line&lt;BR /&gt;&lt;BR /&gt;Drop Table TempHowMany; //*** Needed to have a new table next round&lt;BR /&gt;&lt;BR /&gt;//Split lines into single segments&lt;BR /&gt;&lt;BR /&gt;For vI=1 to $(vHowMany)+1&lt;BR /&gt;&lt;BR /&gt;Let vIName = vI-1;&lt;BR /&gt;&lt;BR /&gt;Temp_Fields:&lt;BR /&gt;JOIN (TopOffers)&lt;BR /&gt;Load&lt;BR /&gt; WEEK_START_DATE,&lt;BR /&gt; Ads ,&lt;BR /&gt; IMPRESSIONS,&lt;BR /&gt; if($(vHowMany)=0,CLICKS,0) as CLICKS,&lt;BR /&gt; right(SubField(Ads, ';;;;', $(vI)),4) as MRC&lt;BR /&gt;Resident TempTextFields;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;Drop Table TempTextFields; //*** Needed to have a new table next round&lt;BR /&gt;&lt;BR /&gt;Next&lt;BR /&gt;&lt;/Q&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Nov 2010 18:52:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-causing-Table-not-found-error-on-load/m-p/173980#M42973</guid>
      <dc:creator />
      <dc:date>2010-11-05T18:52:11Z</dc:date>
    </item>
  </channel>
</rss>

