<?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: Create rows in the script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503316#M188065</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13721386866328451" jivemacro_uid="_13721386866328451"&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached example for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In-case of any query let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will suffice ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin Jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Jun 2013 05:38:39 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-06-25T05:38:39Z</dc:date>
    <item>
      <title>Create rows in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503312#M188061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All, &lt;/P&gt;&lt;P&gt;I've data in the following format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="440"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="64"&gt;ID&lt;/TD&gt;&lt;TD class="xl63" width="104"&gt;Change Date&lt;/TD&gt;&lt;TD width="143"&gt;Old Value&lt;/TD&gt;&lt;TD width="129"&gt;New Value&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl63"&gt;01/01/2011&lt;/TD&gt;&lt;TD&gt;Null&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl63"&gt;06/01/2011&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl63"&gt;01/01/2012&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to create rows in the script where it would take the change date and repeat the old vaue and new value until a new change date comes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want a row created for each date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like in the above example it should take the change date 01/01/2011 and create records until 05/31/2011 with the same new value and old value. Then on 06/01/2011 new records should be created unttil the next change date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the output should show something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;01/01/2011 - Null A&lt;/P&gt;&lt;P&gt;01/02/2011 - Null A&lt;/P&gt;&lt;P&gt;01/03/2011 - Null A&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;06/01/2011 - A B&lt;/P&gt;&lt;P&gt;06/02/2011 - A B&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2013 22:54:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503312#M188061</guid>
      <dc:creator />
      <dc:date>2013-06-24T22:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Create rows in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503313#M188062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This script fills in quantities for missing months. You can use the same methodology to fill in dates.&lt;/P&gt;&lt;P&gt;hth,&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; Product, Month, Qty&lt;BR /&gt; P1,&amp;nbsp;&amp;nbsp; 1,&amp;nbsp; 20&lt;BR /&gt; P1,&amp;nbsp;&amp;nbsp; 2,&amp;nbsp; 15&lt;BR /&gt; P1,&amp;nbsp;&amp;nbsp; 3,&amp;nbsp; 13&lt;BR /&gt; P1,&amp;nbsp;&amp;nbsp; 4,&amp;nbsp; 30&lt;BR /&gt; P1,&amp;nbsp;&amp;nbsp; 6,&amp;nbsp; 23&lt;BR /&gt; P1,&amp;nbsp;&amp;nbsp; 7,&amp;nbsp; 20&lt;BR /&gt; P1,&amp;nbsp;&amp;nbsp; 8,&amp;nbsp; 18&lt;BR /&gt; P1,&amp;nbsp;&amp;nbsp; 9,&amp;nbsp; 28&lt;BR /&gt; P2,&amp;nbsp;&amp;nbsp; 1,&amp;nbsp; 10&lt;BR /&gt; P2,&amp;nbsp;&amp;nbsp; 2,&amp;nbsp; 60&lt;BR /&gt; P2,&amp;nbsp;&amp;nbsp; 3,&amp;nbsp; 14&lt;BR /&gt; P2,&amp;nbsp;&amp;nbsp; 4,&amp;nbsp; 30&lt;BR /&gt; P2,&amp;nbsp;&amp;nbsp; 6,&amp;nbsp; 2&lt;BR /&gt; P2,&amp;nbsp;&amp;nbsp; 7,&amp;nbsp; 20&lt;BR /&gt; P2,&amp;nbsp;&amp;nbsp; 11,&amp;nbsp; 29&lt;BR /&gt; P2,&amp;nbsp;&amp;nbsp; 12,&amp;nbsp; 40&lt;BR /&gt; P3,&amp;nbsp;&amp;nbsp; 1,&amp;nbsp; 20&lt;BR /&gt; P3,&amp;nbsp;&amp;nbsp; 2,&amp;nbsp; 10&lt;BR /&gt; P3,&amp;nbsp;&amp;nbsp; 3,&amp;nbsp; 13&lt;BR /&gt; P3,&amp;nbsp;&amp;nbsp; 4,&amp;nbsp; 30&lt;BR /&gt; P3,&amp;nbsp;&amp;nbsp; 5,&amp;nbsp; 25&lt;BR /&gt; P3,&amp;nbsp;&amp;nbsp; 6,&amp;nbsp; 2&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;tmp:&lt;BR /&gt;LOAD DISTINCT Product RESIDENT data;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // List of all Products&lt;BR /&gt;JOIN (tmp) LOAD DISTINCT Rowno() as Month AUTOGENERATE 12;&amp;nbsp; // List of all Months&lt;BR /&gt;JOIN (tmp) LOAD DISTINCT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Actual data&lt;BR /&gt; Product,&lt;BR /&gt; Month,&lt;BR /&gt; Qty&lt;BR /&gt;RESIDENT data;&lt;/P&gt;&lt;P&gt;//&lt;BR /&gt;NOCONCATENATE&lt;BR /&gt;result:&lt;BR /&gt;LOAD DISTINCT&lt;BR /&gt; Product,&lt;BR /&gt; Month,&lt;BR /&gt; if(isnull(Qty) and Product=peek('Product'), peek('Qty'), Qty) as Qty&lt;BR /&gt;RESIDENT tmp&lt;BR /&gt;ORDER BY Product, Month;&lt;BR /&gt;//&lt;BR /&gt;DROP TABLES tmp, data;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2013 23:56:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503313#M188062</guid>
      <dc:creator />
      <dc:date>2013-06-24T23:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Create rows in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503314#M188063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Thanks for your reply, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure how this approach would work, since month can be definite and so you are generating all the data easily. But i have data that have one date in 2011 and other in 2012. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;JOIN (tmp) LOAD DISTINCT Rowno() as Month AUTOGENERATE 12;&amp;nbsp; // List of all Months&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;How can I generate row for each date? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jun 2013 01:42:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503314#M188063</guid>
      <dc:creator />
      <dc:date>2013-06-25T01:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Create rows in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503315#M188064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so basically for each ID.. there is a different range of start and end date!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jun 2013 03:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503315#M188064</guid>
      <dc:creator />
      <dc:date>2013-06-25T03:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create rows in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503316#M188065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13721386866328451" jivemacro_uid="_13721386866328451"&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached example for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In-case of any query let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will suffice ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin Jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jun 2013 05:38:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503316#M188065</guid>
      <dc:creator />
      <dc:date>2013-06-25T05:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Create rows in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503317#M188066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nitin, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much for your reply. Sorry if I wasn't clear before in my explaination. Here is how my data looks:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 267px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="64"&gt;ID&lt;/TD&gt;&lt;TD class="xl65" width="104"&gt;Change Date&lt;/TD&gt;&lt;TD width="99"&gt;New Value&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Jan-01-2011&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Jun-01-2011&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Feb-01-2012&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;2&lt;/TD&gt;&lt;TD class="xl65"&gt;Feb-01-2011&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;2&lt;/TD&gt;&lt;TD class="xl65"&gt;Mar-01-2012&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;3&lt;/TD&gt;&lt;TD class="xl65"&gt;May-01-2013&lt;/TD&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;3&lt;/TD&gt;&lt;TD class="xl65"&gt;Dec-06-2013&lt;/TD&gt;&lt;TD&gt;E&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the example you posted, you took the max and min of change date. But I have hunderds of IDS, how should I calculate that? Also, my output should have a row for each calendar date. Here is what I am trying to achieve:&lt;/P&gt;&lt;P&gt;Example for ID=1, there is a record created for each date between the change dates. Similarly same records will be created for other ID's. See the output below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 267px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="64"&gt;ID&lt;/TD&gt;&lt;TD class="xl65" width="104"&gt;Change Date&lt;/TD&gt;&lt;TD width="99"&gt;New Value&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Jan-01-2011&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Jan-02-2011&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Jan-03-2011&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD colspan="2" height="20"&gt;…...............&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;May-31-2011&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Jun-01-2011&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Jun-02-2011&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Jun-03-3011&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;……...&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Jan-31-2011&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl65"&gt;Feb-01-2012&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;C&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Feb-01-2011&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do have old value for each row, but all I care is the new value on each date. I hope I am clear this time. Thanks again for your reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jun 2013 06:36:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503317#M188066</guid>
      <dc:creator />
      <dc:date>2013-06-25T06:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create rows in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503318#M188067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;did you manage to get this working and generate new rows for the dates as you described above ?&lt;/P&gt;&lt;P&gt;I would like to do something similar&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Shirley&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jul 2013 13:04:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503318#M188067</guid>
      <dc:creator />
      <dc:date>2013-07-21T13:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create rows in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503319#M188068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shirley,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I was able to do it. Follow this thread and refer to &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Gysbert&lt;/SPAN&gt; solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/thread/85375"&gt;http://community.qlik.com/thread/85375&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Yaman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jul 2013 20:17:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503319#M188068</guid>
      <dc:creator />
      <dc:date>2013-07-21T20:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Create rows in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503320#M188069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Yaman&lt;/P&gt;&lt;P&gt;Will try it&lt;/P&gt;&lt;P&gt;Shirley&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jul 2013 21:07:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-rows-in-the-script/m-p/503320#M188069</guid>
      <dc:creator />
      <dc:date>2013-07-21T21:07:57Z</dc:date>
    </item>
  </channel>
</rss>

