<?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 Show incremental count against records in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-incremental-count-against-records/m-p/1742127#M720329</link>
    <description>&lt;P&gt;Hi, I want to add a column on a pivot /tablewhere every payment received from a client a record is added. For example a client’s account was opened in Jan 2020 and started making payment in Jan. We’ve received 9 payments so far. I want the column to show all payments with increment of 1, across the entire client database. I had a look at rec() and row() an they seem to be the closest functions to what I’m trying to achieve, but counter should start at 1 for every client&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>TheMdu</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Show incremental count against records</title>
      <link>https://community.qlik.com/t5/QlikView/Show-incremental-count-against-records/m-p/1742127#M720329</link>
      <description>&lt;P&gt;Hi, I want to add a column on a pivot /tablewhere every payment received from a client a record is added. For example a client’s account was opened in Jan 2020 and started making payment in Jan. We’ve received 9 payments so far. I want the column to show all payments with increment of 1, across the entire client database. I had a look at rec() and row() an they seem to be the closest functions to what I’m trying to achieve, but counter should start at 1 for every client&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-incremental-count-against-records/m-p/1742127#M720329</guid>
      <dc:creator>TheMdu</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Show incremental count against records</title>
      <link>https://community.qlik.com/t5/QlikView/Show-incremental-count-against-records/m-p/1742748#M720330</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I don't know how much it will help you to solve queries. But I guess you can check following links for any guidance.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/New-to-QlikView/What-is-NoOfColumn-and-Column-No/td-p/859720" target="_blank"&gt;https://community.qlik.com/t5/New-to-QlikView/What-is-NoOfColumn-and-Column-No/td-p/859720&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/April2020/Subsystems/Client/Content/QV_QlikView/ChartFunctions/InterRecordFunctions/columnno.htm#:~:text=ColumnNo()%20returns%20the%20number,first%20column%20is%20number%201.&amp;amp;text=If%20the%20table%20is%20one,equal%20to%20the%20entire%20column" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/April2020/Subsystems/Client/Content/QV_QlikView/ChartFunctions/InterRecordFunctions/columnno.htm#:~:text=ColumnNo()%20returns%20the%20number,first%20column%20is%20number%201.&amp;amp;text=If%20the%20table%20is%20one,equal%20to%20the%20entire%20column&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Let me know if it is helping.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rushi&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2020 10:29:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-incremental-count-against-records/m-p/1742748#M720330</guid>
      <dc:creator>rushikale0106</dc:creator>
      <dc:date>2020-09-10T10:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Show incremental count against records</title>
      <link>https://community.qlik.com/t5/QlikView/Show-incremental-count-against-records/m-p/1742825#M720331</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/63377"&gt;@TheMdu&lt;/a&gt;&amp;nbsp; Can you share sample data with expected output?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2020 12:38:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-incremental-count-against-records/m-p/1742825#M720331</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-09-10T12:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Show incremental count against records</title>
      <link>https://community.qlik.com/t5/QlikView/Show-incremental-count-against-records/m-p/1742854#M720332</link>
      <description>&lt;P&gt;try this as expression in straight table:&lt;BR /&gt;&lt;BR /&gt;=if(isnull(above(Client)),1,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//this is for the first record&lt;BR /&gt;if(above(Client)=Client,Above([Counter])+1,&amp;nbsp; //prior client is the same so increment&lt;BR /&gt;1)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // new client&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;assuming Client is the field name for client, there must be some PayDate&amp;nbsp; (this is what you sort&amp;nbsp; to order your payments)&lt;/P&gt;&lt;P&gt;call your counter expression as Counter (you increment this by 1 if prior client is the same as current client, else set to 1 (if first payment)&amp;nbsp;&lt;/P&gt;&lt;P&gt;you need to determine the counter dynamically and not in script, once filters are applied and you used rowno() as counter in your script, then some of the counters will not be selected thus you will have missing counter records&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2020 13:32:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-incremental-count-against-records/m-p/1742854#M720332</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2020-09-10T13:32:33Z</dc:date>
    </item>
  </channel>
</rss>

