<?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: Help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help/m-p/530605#M198375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;simply&lt;/P&gt;&lt;P&gt;try rowno() or recno() in script&lt;/P&gt;&lt;P&gt;ex-&lt;/P&gt;&lt;P&gt;load *, rowno() as key,&lt;/P&gt;&lt;P&gt;i&lt;/P&gt;&lt;P&gt;from table;&lt;/P&gt;&lt;P&gt;******************************&lt;/P&gt;&lt;P&gt;or try this in expression&lt;/P&gt;&lt;P&gt;sum(if(key&amp;lt;=5,fieldname))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try this&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum(if(rowno()&amp;lt;=5,fieldname))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Aug 2013 12:45:51 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-08-26T12:45:51Z</dc:date>
    <item>
      <title>Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/530600#M198370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have excel which has 1-100 values&lt;/P&gt;&lt;P&gt;how can i&amp;nbsp; calculate sum(1-50) records&lt;/P&gt;&lt;P&gt;help me some one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;rohith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:30:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/530600#M198370</guid>
      <dc:creator>NavinReddy</dc:creator>
      <dc:date>2013-08-26T12:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/530601#M198371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are the fields? Do you want to load all rows into qv? Does the summation depend on the row order?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:34:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/530601#M198371</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-26T12:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/530602#M198372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;can you please upload the file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:39:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/530602#M198372</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2013-08-26T12:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/530603#M198373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample excel take 10 records i need tobe sum 1-5 records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;rohith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:40:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/530603#M198373</guid>
      <dc:creator>NavinReddy</dc:creator>
      <dc:date>2013-08-26T12:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/530604#M198374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii Niranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load the table with the where condition. also add the One more field to identify the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then concat the rest of the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please see the code below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' 1 -50' as Field&lt;/P&gt;&lt;P&gt;From table_Name where Condition(For 1-50 rows);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' 51 - 100' as Field&lt;/P&gt;&lt;P&gt;From table_Name where Condition(For 51-100 rows);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create the chart contaning set analysis with the filter of Field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:40:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/530604#M198374</guid>
      <dc:creator>nilesh_gangurde</dc:creator>
      <dc:date>2013-08-26T12:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/530605#M198375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;simply&lt;/P&gt;&lt;P&gt;try rowno() or recno() in script&lt;/P&gt;&lt;P&gt;ex-&lt;/P&gt;&lt;P&gt;load *, rowno() as key,&lt;/P&gt;&lt;P&gt;i&lt;/P&gt;&lt;P&gt;from table;&lt;/P&gt;&lt;P&gt;******************************&lt;/P&gt;&lt;P&gt;or try this in expression&lt;/P&gt;&lt;P&gt;sum(if(key&amp;lt;=5,fieldname))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try this&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum(if(rowno()&amp;lt;=5,fieldname))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:45:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/530605#M198375</guid>
      <dc:creator />
      <dc:date>2013-08-26T12:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Help</title>
      <link>https://community.qlik.com/t5/QlikView/Help/m-p/530606#M198376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See here,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Sum(If(Recno()&amp;lt;5,Field)) as Sum;&amp;nbsp; // this will give you sum of first 4 values, i.e - 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;BR /&gt;Field&lt;BR /&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;5&lt;BR /&gt;6&lt;BR /&gt;7&lt;BR /&gt;8&lt;BR /&gt;9&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have other dimensions as well, you have to use Group By cluase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:54:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help/m-p/530606#M198376</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-26T12:54:29Z</dc:date>
    </item>
  </channel>
</rss>

