<?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 Generate fields between 2 numbers in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Generate-fields-between-2-numbers/m-p/225825#M78090</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try with the subfield function ?&lt;/P&gt;&lt;P&gt;Subfield can duplicate records but I'have not tested your very interesting issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Dec 2010 21:32:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-12-16T21:32:23Z</dc:date>
    <item>
      <title>Generate fields between 2 numbers</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-fields-between-2-numbers/m-p/225824#M78089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to create new fields from start and end values in a table. All the values I need are there, so I'm not shure if Interval Match is the solution. It's something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start End Quota&lt;/P&gt;&lt;P&gt;1 3 555&lt;/P&gt;&lt;P&gt;4 7 888&lt;/P&gt;&lt;P&gt;8 9 333&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I want to create something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Time Quota&lt;/P&gt;&lt;P&gt;1 555&lt;/P&gt;&lt;P&gt;2 555&lt;/P&gt;&lt;P&gt;3 555&lt;/P&gt;&lt;P&gt;4 888&lt;/P&gt;&lt;P&gt;5 888&lt;/P&gt;&lt;P&gt;6 888&lt;/P&gt;&lt;P&gt;7 888&lt;/P&gt;&lt;P&gt;8 333&lt;/P&gt;&lt;P&gt;9 333&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 20:39:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-fields-between-2-numbers/m-p/225824#M78089</guid>
      <dc:creator>villafuerte</dc:creator>
      <dc:date>2010-12-16T20:39:06Z</dc:date>
    </item>
    <item>
      <title>Generate fields between 2 numbers</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-fields-between-2-numbers/m-p/225825#M78090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try with the subfield function ?&lt;/P&gt;&lt;P&gt;Subfield can duplicate records but I'have not tested your very interesting issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 21:32:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-fields-between-2-numbers/m-p/225825#M78090</guid>
      <dc:creator />
      <dc:date>2010-12-16T21:32:23Z</dc:date>
    </item>
    <item>
      <title>Generate fields between 2 numbers</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-fields-between-2-numbers/m-p/225826#M78091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Villafuerte,&lt;/P&gt;&lt;P&gt;Do something like this:&lt;/P&gt;&lt;P&gt;Original_Table:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Start,End,Quota&lt;BR /&gt;1,3,555,&lt;BR /&gt;4,7,888&lt;BR /&gt;8,9,333&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Table:&lt;BR /&gt;Load iterno() as Iterno,&lt;BR /&gt;Start + iterno()-1 as Time,&lt;BR /&gt;Quota&lt;BR /&gt;resident Original_Table&lt;BR /&gt;while iterno() &amp;lt;= End-Start+1;&lt;/P&gt;&lt;P&gt;Drop table Original_Table;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 21:36:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-fields-between-2-numbers/m-p/225826#M78091</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-12-16T21:36:20Z</dc:date>
    </item>
    <item>
      <title>Generate fields between 2 numbers</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-fields-between-2-numbers/m-p/225827#M78092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Karl!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 21:58:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-fields-between-2-numbers/m-p/225827#M78092</guid>
      <dc:creator>villafuerte</dc:creator>
      <dc:date>2010-12-16T21:58:50Z</dc:date>
    </item>
  </channel>
</rss>

