<?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: Creating Additional Records based on a loaded table in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Creating-Additional-Records-based-on-a-loaded-table/m-p/1953343#M11034</link>
    <description>&lt;P&gt;It is an honor to receive an assist from the man in the white hat.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Very much appreciate the help, Rob!&lt;/P&gt;
&lt;P&gt;DM&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Jul 2022 12:39:46 GMT</pubDate>
    <dc:creator>Irisha55ets</dc:creator>
    <dc:date>2022-07-08T12:39:46Z</dc:date>
    <item>
      <title>Creating Additional Records based on a loaded table</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Creating-Additional-Records-based-on-a-loaded-table/m-p/1952931#M11028</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;
&lt;P&gt;I have a table of quarterly sales data. I am trying to generate additional rows for multiple quarters into the future.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sample existing records:&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 180pt;" border="0" width="239px" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD width="119.7px" height="19" class="xl65" style="height: 14.4pt; width: 90pt;"&gt;03/31/2021&lt;/TD&gt;
&lt;TD width="119.3px" align="right" class="xl63" style="width: 90pt;"&gt;100&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD width="119.7px" height="19" class="xl65" style="height: 14.4pt;"&gt;06/30/2021&lt;/TD&gt;
&lt;TD width="119.3px" align="right" class="xl63"&gt;105&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD width="119.7px" height="19" class="xl65" style="height: 14.4pt;"&gt;09/30/2021&lt;/TD&gt;
&lt;TD width="119.3px" align="right" class="xl64"&gt;109&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD width="119.7px" height="19" class="xl65" style="height: 14.4pt;"&gt;12/31/2021&lt;/TD&gt;
&lt;TD width="119.3px" align="right" class="xl64"&gt;112&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE style="border-collapse: collapse;" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD width="119.625px" height="19" class="xl65" style="height: 14.4pt; width: 90pt;"&gt;03/31/2022&lt;/TD&gt;
&lt;TD width="119.375px" align="right" class="xl63" style="width: 90pt;"&gt;115&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD width="119.625px" height="19" class="xl65" style="height: 14.4pt;"&gt;06/30/2022&lt;/TD&gt;
&lt;TD width="119.375px" align="right" class="xl63"&gt;120&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I use the load script to create estimated future records? (without using an inline load)&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 14:40:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Creating-Additional-Records-based-on-a-loaded-table/m-p/1952931#M11028</guid>
      <dc:creator>Irisha55ets</dc:creator>
      <dc:date>2022-07-07T14:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Additional Records based on a loaded table</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Creating-Additional-Records-based-on-a-loaded-table/m-p/1952998#M11029</link>
      <description>&lt;P&gt;Assuming existing column names of "Quarter" and "Value", how about:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Concatenate (BaseTable)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Date(AddMonths(MaxQuarter, IterNo()*3)) as Quarter,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; 0 as Value&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;While IterNo() &amp;lt;= 4 // Add 4 more Quarters &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Max(Quarter) as MaxQuarter&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Resident BaseTable;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank" rel="noopener"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank" rel="noopener"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank" rel="noopener"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 16:49:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Creating-Additional-Records-based-on-a-loaded-table/m-p/1952998#M11029</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2022-07-07T16:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Additional Records based on a loaded table</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Creating-Additional-Records-based-on-a-loaded-table/m-p/1953343#M11034</link>
      <description>&lt;P&gt;It is an honor to receive an assist from the man in the white hat.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Very much appreciate the help, Rob!&lt;/P&gt;
&lt;P&gt;DM&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 12:39:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Creating-Additional-Records-based-on-a-loaded-table/m-p/1953343#M11034</guid>
      <dc:creator>Irisha55ets</dc:creator>
      <dc:date>2022-07-08T12:39:46Z</dc:date>
    </item>
  </channel>
</rss>

