<?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: Partial Reload of Last N Months: not finding table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Partial-Reload-of-Last-N-Months-not-finding-table/m-p/2530889#M107882</link>
    <description>&lt;P&gt;Thank, its' going through now! But there's another problem: it does not find the T_DELTA table when executing the following instruction:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    Concatenate([SALES])
    ADD LOAD *
    RESIDENT T_DELTA;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;How can I concatenate delta rows into the full table from the qvd?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
    <pubDate>Tue, 16 Sep 2025 06:43:09 GMT</pubDate>
    <dc:creator>jeanful</dc:creator>
    <dc:date>2025-09-16T06:43:09Z</dc:date>
    <item>
      <title>Partial Reload of Last N Months: not finding table</title>
      <link>https://community.qlik.com/t5/App-Development/Partial-Reload-of-Last-N-Months-not-finding-table/m-p/2530853#M107877</link>
      <description>&lt;P&gt;Hello experts, I have a table called Sales, which is fully loaded from Excel file.&lt;/P&gt;&lt;P&gt;I would perform a partial reload of the data of this table. The loading logic would be that only the last N months are updated. So, I'm simulating that the last N months come from inline table.&lt;/P&gt;&lt;P&gt;So the script should have:&lt;BR /&gt;- Full loading: all data is read from the excel&lt;BR /&gt;- Partial loading: only last N months are updated (from inline table).&lt;BR /&gt;&lt;BR /&gt;This is the script I created. When launching partial reload, Qlik Sense Cloud says that the Sales table is not found. Why?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[Sales]:
LOAD
	[ANNO],
	[MESE],
	[CLIENTE],
	[PRODOTTO],
	[QTA]
 FROM [lib://xxx/File1.xlsx]
(ooxml, embedded labels, table is Foglio1);


If IsPartialReload() Then

  [Sales]:
  LOAD * FROM [lib://xxx/TestDelta3M.qvd](qvd) where [MESE] &amp;lt;= Num(Month(Now()))-3;

  //Delta last N months
  [T_DELTA]:
  ADD LOAD *
    INLINE [
    ANNO, MESE, CLIENTE, PRODOTTO, QTA
    2025,7,C1,P1,1
    2025,7,C1,P2,1
    2025,7,C1,P3,1
    2025,7,C2,P1,1
    2025,7,C2,P2,1
    2025,7,C2,P3,1
    2025,7,C3,P1,1
    2025,7,C3,P2,1
    2025,7,C3,P3,1
    2025,7,C4,P1,1
    2025,7,C4,P2,1
    2025,7,C4,P3,1
    2025,7,C5,P1,1
    2025,7,C5,P2,1
    2025,7,C5,P3,1
    2025,8,C1,P1,1
    2025,8,C1,P2,1
    2025,8,C1,P3,1
    2025,8,C2,P1,1
    2025,8,C2,P2,1
    2025,8,C2,P3,1
    2025,8,C3,P1,1
    2025,8,C3,P2,1
    2025,8,C3,P3,1
    2025,8,C4,P1,1
    2025,8,C4,P2,1
    2025,8,C4,P3,1
    2025,8,C5,P1,1
    2025,8,C5,P2,1
    2025,8,C5,P3,1
    ];
    
    Concatenate([SALES])
    ADD LOAD *
    RESIDENT T_DELTA;

EndIf;

STORE Sales INTO
[lib://xxx/TestDelta3M.qvd];&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the error:&lt;BR /&gt;&lt;SPAN&gt;Table 'SALES' not found The engine error code: Table not found error:11001 The error occurred here: Concatenate([SALES]) ADD LOAD * RESIDENT T_DELTA&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 06:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Partial-Reload-of-Last-N-Months-not-finding-table/m-p/2530853#M107877</guid>
      <dc:creator>jeanful</dc:creator>
      <dc:date>2025-09-16T06:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload of Last N Months: not finding table</title>
      <link>https://community.qlik.com/t5/App-Development/Partial-Reload-of-Last-N-Months-not-finding-table/m-p/2530866#M107879</link>
      <description>&lt;P&gt;Maybe&lt;/P&gt;&lt;P&gt;Qlik is case sensitive&lt;/P&gt;&lt;P&gt;You have &lt;STRONG&gt;SALES&lt;/STRONG&gt; and &lt;STRONG&gt;Sales&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 02:57:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Partial-Reload-of-Last-N-Months-not-finding-table/m-p/2530866#M107879</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2025-09-16T02:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload of Last N Months: not finding table</title>
      <link>https://community.qlik.com/t5/App-Development/Partial-Reload-of-Last-N-Months-not-finding-table/m-p/2530889#M107882</link>
      <description>&lt;P&gt;Thank, its' going through now! But there's another problem: it does not find the T_DELTA table when executing the following instruction:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    Concatenate([SALES])
    ADD LOAD *
    RESIDENT T_DELTA;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;How can I concatenate delta rows into the full table from the qvd?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 06:43:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Partial-Reload-of-Last-N-Months-not-finding-table/m-p/2530889#M107882</guid>
      <dc:creator>jeanful</dc:creator>
      <dc:date>2025-09-16T06:43:09Z</dc:date>
    </item>
  </channel>
</rss>

