<?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 Diff b/w Count and RowNo? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613101#M1119112</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;&amp;nbsp; can any one tell diff b/w count and rowno .I have emp table used in straight table one dimension as ID and exp. as rowno(total),&lt;/P&gt;&lt;P&gt;total rows is showing 150 not matching the data in my database .if i use count(ID) its matching .Can anyone brief these to me please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Feb 2014 05:58:28 GMT</pubDate>
    <dc:creator>sunilkumarqv</dc:creator>
    <dc:date>2014-02-06T05:58:28Z</dc:date>
    <item>
      <title>Diff b/w Count and RowNo?</title>
      <link>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613101#M1119112</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;&amp;nbsp; can any one tell diff b/w count and rowno .I have emp table used in straight table one dimension as ID and exp. as rowno(total),&lt;/P&gt;&lt;P&gt;total rows is showing 150 not matching the data in my database .if i use count(ID) its matching .Can anyone brief these to me please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 05:58:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613101#M1119112</guid>
      <dc:creator>sunilkumarqv</dc:creator>
      <dc:date>2014-02-06T05:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Diff b/w Count and RowNo?</title>
      <link>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613102#M1119114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;These two functions are &lt;SPAN style="text-decoration: underline;"&gt;very&lt;/SPAN&gt; different.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count() is an aggregation function, i.e. it counts the number of records associated with a dimensional value. It can be used as expression in a chart or as function in the load script if you have a "Group By". It takes many records as input and returns one number as output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RowNo() is a scalar function, and counts the number of records as output from a Load statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 06:33:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613102#M1119114</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-02-06T06:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Diff b/w Count and RowNo?</title>
      <link>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613103#M1119116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&amp;nbsp; Henric&amp;nbsp; . Can explore it with some examples ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 06:53:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613103#M1119116</guid>
      <dc:creator>sunilkumarqv</dc:creator>
      <dc:date>2014-02-06T06:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: Diff b/w Count and RowNo?</title>
      <link>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613104#M1119118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suggest you make your own example. For instance, if you use the following script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Load &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RowNo() as ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pick(Ceil(3*Rand()),'A','B','C') as Dim&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Autogenerate 100 ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you will be able to see a lot. Create a pivot table with Dim as dimension and Count(ID) as expression. Further, add RowNo() as second expression. Now the difference should be obvious.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 07:08:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613104#M1119118</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-02-06T07:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Diff b/w Count and RowNo?</title>
      <link>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613105#M1119119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check enclosed file... &lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 07:08:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613105#M1119119</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-02-06T07:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Diff b/w Count and RowNo?</title>
      <link>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613106#M1119120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks manish and Henric realy i learn't somthing new .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 08:13:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Diff-b-w-Count-and-RowNo/m-p/613106#M1119120</guid>
      <dc:creator>sunilkumarqv</dc:creator>
      <dc:date>2014-02-06T08:13:51Z</dc:date>
    </item>
  </channel>
</rss>

