<?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: Manually insert row within table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016505#M344409</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the front-end, it would be a complex and costly procedure that would probably not be affordable in your real data. However, if you have limited number of rows in data as you have shown, a try can be given. Having said that, I strongly suggest to take this into the script as I shown above unless there is a very good reason that you can't go for script solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Mar 2016 10:19:59 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2016-03-07T10:19:59Z</dc:date>
    <item>
      <title>Manually insert row within table</title>
      <link>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016501#M344405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to insert calculated expression as dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA attachment for qvw file and for expected output&lt;/P&gt;&lt;P&gt;&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, 07 Mar 2016 08:45:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016501#M344405</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2016-03-07T08:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Manually insert row within table</title>
      <link>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016502#M344406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is back-end solution is an option?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 08:53:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016502#M344406</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-03-07T08:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Manually insert row within table</title>
      <link>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016503#M344407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If yes, check this:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Table:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load *, RowNo() as Sort Inline&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;[RollNum,salary&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;180,300000&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;130,145000&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;120,110000&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;170,100000&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;110,50000&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;150,20000&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;140,10000&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;160,5000&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;Concatenate&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; Sort+0.5 as Sort,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; 'Diff' as RollNum,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; RangeSum(salary,-Previous(salary)) as salary&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Resident Table Order by Sort Desc;&lt;/SPAN&gt;&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/117157_Untitled.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 09:24:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016503#M344407</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-03-07T09:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Manually insert row within table</title>
      <link>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016504#M344408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.qlik.com/qlik-users/26418"&gt;tresesco&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we do this on front end.&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, 07 Mar 2016 10:11:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016504#M344408</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2016-03-07T10:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Manually insert row within table</title>
      <link>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016505#M344409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the front-end, it would be a complex and costly procedure that would probably not be affordable in your real data. However, if you have limited number of rows in data as you have shown, a try can be given. Having said that, I strongly suggest to take this into the script as I shown above unless there is a very good reason that you can't go for script solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 10:19:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manually-insert-row-within-table/m-p/1016505#M344409</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-03-07T10:19:59Z</dc:date>
    </item>
  </channel>
</rss>

