<?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 Lots of Data in Script with For Loops, Need Help Optomizing in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173359#M381187</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think your approach would be slow&amp;nbsp; In my experience, iterating rows in a for loop is usually the slowest approach. Here's an alternative that may be simpler and much much faster. I've simplified, but you should be able to add in your filters and such.&amp;nbsp; In your description you said you wanted the monthly payment, but your&amp;nbsp; code example seems to show the accumulated payment. This code technique using IterNo() would work for either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;BaseData:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD *, RecNo() as Key&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Contract Start Date,&amp;nbsp; Term Months,&amp;nbsp; Contract Revenue&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1/1/2015, 12, 1200&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;6/1/2015, 14, 1800&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;8/1/2000, 24, 3000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Monthly:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; Key,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; MonthEnd(AddMonths([Contract Start Date],IterNo()-1)) as PaymentMonth,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; round([Contract Revenue] / [Term Months],1) as Payment&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Resident BaseData&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;WHILE IterNo() &amp;lt;= [Term Months]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jul 2016 23:11:09 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2016-07-28T23:11:09Z</dc:date>
    <item>
      <title>Creating Lots of Data in Script with For Loops, Need Help Optomizing</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173358#M381186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;INTRODUCTION&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Greetings community, I need help finding the most efficient way to create a large amount of data.&amp;nbsp; It takes 20 hours to create 1 million records and I would like to make sure my code is as efficient as possible &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;SUMMARY&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;I have lots of financial data related to specific rental contracts.&amp;nbsp; The financial data are ONLY available as totals for the entire contract with start dates and maturity dates provided.&amp;nbsp; From this data I need to create monthly records which programmatically allocate the total across each month during which the contract is/was valid.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;For example, if Contract #A123 having a total of $1200 payments has a start date of Jan 1, 2015 and an end date of Dec 31, 2015, then I would need to take this contract and turn it into records such as this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;A123&amp;nbsp; Jan 1, 2015&amp;nbsp; $100&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;A123&amp;nbsp; Feb 1, 2015&amp;nbsp; $100&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;A123&amp;nbsp; Mar 1, 2015&amp;nbsp; $100&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;...&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;A123&amp;nbsp; Dec 1, 2015&amp;nbsp; $100&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 12pt;"&gt;I am of course, simplifying things.&amp;nbsp; Many contracts have different customer behaviors and different resulting financials.&amp;nbsp; Based on customer behaviors, different filters will be applied and afford different logic and monthly amount calculations.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;DISCLAIMER&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;I know that this involves moderately heavy ETL code which QlikView is capable of accomplishing, but may not be optimized for processing large &lt;/SPAN&gt;&lt;SPAN style="font-size: 16px;"&gt;amounts&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt; of data.&amp;nbsp; Oracle PL/SQL would certainly handle this better; however, I no &lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt;longer have the access to place Oracle code into production.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;MY SOLUTION&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;The psuedo-code of solution is as follows:&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="font-size: 12pt;"&gt;Load all of the contract summary data into table "ContractSummary"&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 12pt;"&gt;Create a new temporary table named "tempSpecialContracts", of ContractSummary records matching filter criteria&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 12pt;"&gt;Get the count of all the records in &lt;SPAN style="font-size: 16px;"&gt;tempSpecialContracts&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 12pt;"&gt;Open FOR LOOP #1 with the count from step #3, use the Peak() function to get the contract number (primary key), dates, duration in months, and total amount for each record.&amp;nbsp; Calculate the monthly payment amount from total amount and number of months.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 12pt;"&gt;Within FOR LOOP #1, open FOR LOOP #2 with each contracts duration in months.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 12pt;"&gt;Loop through each one of the number of months, incrementing the date from the start date and then writing a record to a monthly transaction table with the Contract Number, Special Contract Type, Transaction Date, and Transaction Amount.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 12pt;"&gt;Drop the table &lt;SPAN style="font-size: 16px;"&gt;tempSpecialContracts&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;THE CODE&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Here is a snippet of the code I have written, see attachment.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;THE ASK&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Please take a look at my code and tell me if you think there is room for optimization.&amp;nbsp; For example, perhaps there is a more efficient way to write out the new records than an INLINE load.&amp;nbsp; I would appreciate any ideas that would make this run faster.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;ABOUT ME&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;I am a long time reader, first time poster under this account.&amp;nbsp; My previous account seems to have been lost with an unrecoverable password.&amp;nbsp; I have been working with QlikView since 2012 and Oracle PL/SQL since 1999.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 20:35:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173358#M381186</guid>
      <dc:creator>justaqlikker</dc:creator>
      <dc:date>2016-07-28T20:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Lots of Data in Script with For Loops, Need Help Optomizing</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173359#M381187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think your approach would be slow&amp;nbsp; In my experience, iterating rows in a for loop is usually the slowest approach. Here's an alternative that may be simpler and much much faster. I've simplified, but you should be able to add in your filters and such.&amp;nbsp; In your description you said you wanted the monthly payment, but your&amp;nbsp; code example seems to show the accumulated payment. This code technique using IterNo() would work for either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;BaseData:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD *, RecNo() as Key&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Contract Start Date,&amp;nbsp; Term Months,&amp;nbsp; Contract Revenue&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1/1/2015, 12, 1200&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;6/1/2015, 14, 1800&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;8/1/2000, 24, 3000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Monthly:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; Key,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; MonthEnd(AddMonths([Contract Start Date],IterNo()-1)) as PaymentMonth,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; round([Contract Revenue] / [Term Months],1) as Payment&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Resident BaseData&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;WHILE IterNo() &amp;lt;= [Term Months]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 23:11:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173359#M381187</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2016-07-28T23:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Lots of Data in Script with For Loops, Need Help Optomizing</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173360#M381188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow Rob, this is wunderful! &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't know it was possible to do such a thing.&amp;nbsp; I am translating my code to your method and I will reply back soon with my test results.&amp;nbsp; Thank you!!!&amp;nbsp; I was truly stuck and you have given me lots of hope.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2016 13:54:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173360#M381188</guid>
      <dc:creator>justaqlikker</dc:creator>
      <dc:date>2016-07-29T13:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Lots of Data in Script with For Loops, Need Help Optomizing</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173361#M381189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your question is now answered, please flag the Correct Answer (via the big "Correct Answer" button near every post).&lt;/P&gt;&lt;P&gt;If not, please make clear what part of this topic you still need help with &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2016 14:24:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173361#M381189</guid>
      <dc:creator>oknotsen</dc:creator>
      <dc:date>2016-07-29T14:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Lots of Data in Script with For Loops, Need Help Optomizing</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173362#M381190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was able to easily convert my inefficient nest FOR loop to your method, Rob, and the results are unbelievably better.&amp;nbsp; A data set that takes my old code 10 minutes to process into 65,000 rows of monthly data is executed in 1 second using your design.&amp;nbsp; WOW!!!&amp;nbsp; I am so very thankful!&amp;nbsp; Everything validates out perfectly as well.&amp;nbsp; I decided to push your design even further and it produces 760,000 monthly records in 6 seconds!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding your question of the "accumulated payment" in my example, this is used in a secondary monthly depreciation example and I forgot to remove it.&amp;nbsp; Thanks for pointing out that it could still be handled.&amp;nbsp; It is working beautifully.&amp;nbsp; Now my old code really just serves as psuedo-code for helping me with the conversion.&amp;nbsp; I will hold on to the old code as an example for the next time I might need to do something similar with lower volumes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2016 19:09:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173362#M381190</guid>
      <dc:creator>justaqlikker</dc:creator>
      <dc:date>2016-07-29T19:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Lots of Data in Script with For Loops, Need Help Optomizing</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173363#M381191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad to hear you got such great results!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jul 2016 00:17:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Lots-of-Data-in-Script-with-For-Loops-Need-Help/m-p/1173363#M381191</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2016-07-30T00:17:50Z</dc:date>
    </item>
  </channel>
</rss>

