<?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: Convert record in range to row for excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200497#M878635</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome, I would request you to close this thread by marking correct response.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14806"&gt;Qlik Community Tip: Marking Replies as Correct or Helpful&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Oct 2016 16:25:03 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-10-18T16:25:03Z</dc:date>
    <item>
      <title>Convert record in range to row for excel</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200492#M878630</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;&lt;/P&gt;&lt;P&gt;I got an excel file where the scenario ID is in range format and i want to convert it to unique scenario ID as below:-&lt;/P&gt;&lt;P&gt;Any suggestion method to extract it?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="ScreenHunter_315 Oct. 17 18.21.jpg" class="jive-image image-1" src="/legacyfs/online/140811_ScreenHunter_315 Oct. 17 18.21.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200492#M878630</guid>
      <dc:creator>boonhaw_tan</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Convert record in range to row for excel</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200493#M878631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the logic behind creating the New Scenario ID? create 2 more for each Old Scenario ID?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Oct 2016 16:58:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200493#M878631</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-17T16:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Convert record in range to row for excel</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200494#M878632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny, &lt;/P&gt;&lt;P&gt;Thank a lot for your response.&lt;/P&gt;&lt;P&gt;In old scenario ID the digit part are in number range.&lt;/P&gt;&lt;P&gt;e.g: UAT_FM_0025-0027 where &lt;SPAN style="font-size: 13.3333px;"&gt;0025-0027&lt;/SPAN&gt; is in range between 0025 and 0027&amp;nbsp; &lt;/P&gt;&lt;P&gt;Thus, i need to help to sperate old scenario ID into unique scenario ID like UAT_FM_0025, UAT_FM_0026 and UAT_FM_0027. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Boon Haw&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2016 01:35:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200494#M878632</guid>
      <dc:creator>boonhaw_tan</dc:creator>
      <dc:date>2016-10-18T01:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Convert record in range to row for excel</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200495#M878633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD SubField([Old Scenario ID], '_', 1) &amp;amp; '_' &amp;amp; SubField([Old Scenario ID], '_', 2) &amp;amp; Num(Start + IterNo() - 1, '0000') as [New Scenario ID],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; [Old Scenario ID]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;While Start + IterNo() - 1 &amp;lt;= End;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Num#(SubField(SubField([Old Scenario ID], '_', 3), '-', 1)) as Start,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Num#(SubField(SubField([Old Scenario ID], '_', 3), '-', 2)) as End;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Old Scenario ID&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UAT_FM_0025-0027&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UAT_AR_0010-0013&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UAT_AP_0031-0032&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/140938_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2016 02:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200495#M878633</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-18T02:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Convert record in range to row for excel</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200496#M878634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny, It work perfectly.&lt;/P&gt;&lt;P&gt;Thanks for your great!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2016 09:03:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200496#M878634</guid>
      <dc:creator>boonhaw_tan</dc:creator>
      <dc:date>2016-10-18T09:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Convert record in range to row for excel</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200497#M878635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome, I would request you to close this thread by marking correct response.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14806"&gt;Qlik Community Tip: Marking Replies as Correct or Helpful&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2016 16:25:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-record-in-range-to-row-for-excel/m-p/1200497#M878635</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-18T16:25:03Z</dc:date>
    </item>
  </channel>
</rss>

