<?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 How to get row count for a group order by date in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037131#M85441</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Can anyone help me with equivalent Qlik Sense code(LOAD statement) for the below SQL&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ROW_NUMBER() over (PARTITION by APP_HOST_SYSTEM,CAST(MSG_DATETIME as DATE) ORDER BY DURATION) as RowNum&lt;/P&gt;
&lt;P&gt;I need a incremental number for the group APP_HOST_SYSTEM and MSG_DATETIME order by DURATION, this is to find the top delayed responses with 90th 95th percentile.&lt;BR /&gt;the table has these columns -&lt;BR /&gt;APP_HOST_SYSTEM,&lt;BR /&gt;MSG_DATETIME,&lt;/P&gt;
&lt;P&gt;DURATION&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Feb 2023 12:33:21 GMT</pubDate>
    <dc:creator>K7pramod</dc:creator>
    <dc:date>2023-02-13T12:33:21Z</dc:date>
    <item>
      <title>How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037131#M85441</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Can anyone help me with equivalent Qlik Sense code(LOAD statement) for the below SQL&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ROW_NUMBER() over (PARTITION by APP_HOST_SYSTEM,CAST(MSG_DATETIME as DATE) ORDER BY DURATION) as RowNum&lt;/P&gt;
&lt;P&gt;I need a incremental number for the group APP_HOST_SYSTEM and MSG_DATETIME order by DURATION, this is to find the top delayed responses with 90th 95th percentile.&lt;BR /&gt;the table has these columns -&lt;BR /&gt;APP_HOST_SYSTEM,&lt;BR /&gt;MSG_DATETIME,&lt;/P&gt;
&lt;P&gt;DURATION&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 12:33:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037131#M85441</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-13T12:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037236#M85446</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/217918"&gt;@K7pramod&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fractile function does the work. Just have a look at the help site.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/November2022/Subsystems/Hub/Content/Sense_Hub/Scripting/StatisticalAggregationFunctions/fractile.htm" target="_blank" rel="noopener"&gt;https://help.qlik.com/en-US/sense/November2022/Subsystems/Hub/Content/Sense_Hub/Scripting/StatisticalAggregationFunctions/fractile.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 15:11:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037236#M85446</guid>
      <dc:creator>SerhanKaraer</dc:creator>
      <dc:date>2023-02-13T15:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037256#M85447</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/85705"&gt;@SerhanKaraer&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;But i have the percentile values, my requirement is to list down the rows falling between these percentiles like&lt;/P&gt;
&lt;P&gt;Select * from MyTab where RowNum BETWEEN Floor(PercentileMark90)&lt;BR /&gt;and CEILING(PercentileMark90)&lt;/P&gt;
&lt;P&gt;For doing this i need to have the rownum assigned to each row of my data, is there any compatible Qlik sense script for below SQL&lt;/P&gt;
&lt;P&gt;ROW_NUMBER() over (PARTITION by APP_HOST_SYSTEM,CAST(MSG_DATETIME as DATE) ORDER BY DURATION) as RowNum&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 16:13:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037256#M85447</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-13T16:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037337#M85459</link>
      <description>&lt;P&gt;G'day&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/217918"&gt;@K7pramod&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I don't have a comment on the percentile logic as I don't know how 'PercetileMark90' is derived, but I can give you the Qlik equivalent of your 'partition by' statement ...&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table:
load *,
     ahs &amp;amp; '-' &amp;amp; num( md ) as group_key;
load id,
     APP_HOST_SYSTEM as ahs,
     MSG_DATETIME    as md,
     DURATION        as dur
from source.qvd (qvd);

Rollup:
left join (Table)
load group_key
   , rownum() as RowNum
resident Table
group by group_key
order by dur;&lt;/LI-CODE&gt;
&lt;P&gt;The difference between SQL and Qlik is you need to do the 'group by' into a separate table and then join it back into the main table. I hope this helps.&lt;/P&gt;
&lt;P&gt;Cheers, Barnaby.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 21:02:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037337#M85459</guid>
      <dc:creator>barnabyd</dc:creator>
      <dc:date>2023-02-13T21:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037427#M85470</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2856"&gt;@barnabyd&lt;/a&gt;&amp;nbsp;, I tried the above code and getting some issues in group by as it needs the aggregation for using the group by - Below error I am getting -&amp;nbsp;&lt;/P&gt;
&lt;DIV class="headline edc_error"&gt;&lt;FONT face="courier new,courier"&gt;The following error occurred:&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;&lt;FONT face="courier new,courier"&gt;Aggregation expressions required by GROUP BY clause.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="empty edc_error"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="headline edc_error"&gt;&lt;FONT face="courier new,courier"&gt;The error occurred here:&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;&lt;FONT face="courier new,courier"&gt;Rollup: left join (Table) &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;&lt;FONT face="courier new,courier"&gt;load group_key,&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;&lt;FONT face="courier new,courier"&gt; RowNo() as RowNum &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;&lt;FONT face="courier new,courier"&gt;resident Table &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;&lt;FONT face="courier new,courier"&gt;group by group_key &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;&lt;FONT face="courier new,courier"&gt;order by dur&lt;/FONT&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 04:27:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037427#M85470</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-14T04:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037435#M85473</link>
      <description>&lt;P&gt;Sorry, I often forget this piece. Everything that is not part of the group by, needs to be in some sort of aggregation expression, such as max(), avg() etc. In this case, I think we need to change RowNo() to &lt;STRONG&gt;only( RowNo() )&lt;/STRONG&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 05:04:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037435#M85473</guid>
      <dc:creator>barnabyd</dc:creator>
      <dc:date>2023-02-14T05:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037503#M85478</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2856"&gt;@barnabyd&lt;/a&gt;&amp;nbsp; looks like this works but uses more memory while joining the RowNum to the main table.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Table:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;load *,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ahs &amp;amp; '-' &amp;amp; num( md ) as group_key;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;load &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;APP_HOST_SYSTEM as ahs,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;MSG_DATETIME as md,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;DURATION as dur,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;CountFlag&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;resident CPD_IBL;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Rollup:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;left join (Table)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;load group_key,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Only(RowNo()) as RowNum&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;resident Table&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;group by group_key&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;order by dur;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Left Join(CPD_IBL)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Load&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ahs as APP_HOST_SYSTEM,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;md as MSG_DATETIME,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;RowNum&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Resident Table;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;drop Table Table;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;It fails in the last left join as it takes more memory, like i have 16GB RAM machine running this query and it comes out with error -121.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 07:39:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037503#M85478</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-14T07:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037558#M85486</link>
      <description>&lt;P&gt;As below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Load&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;,Autonumber(APP_HOST_SYSTEM&amp;amp;DATE,APP_HOST_SYSTEM) as RowNum&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;APP_HOST_SYSTEM,&lt;BR /&gt;MSG_DATETIME,&lt;/P&gt;
&lt;P&gt;DURATION&lt;/P&gt;
&lt;P&gt;From SomeSource;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;refer below&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/May2022/Subsystems/Client/Content/QV_QlikView/Scripting/CounterFunctions/autonumber.htm" target="_blank" rel="noopener"&gt;https://help.qlik.com/en-US/qlikview/May2022/Subsystems/Client/Content/QV_QlikView/Scripting/CounterFunctions/autonumber.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 08:56:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037558#M85486</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2023-02-14T08:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037611#M85488</link>
      <description>&lt;P&gt;Looks like&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2856"&gt;@barnabyd&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751"&gt;@vinieme12&lt;/a&gt;&amp;nbsp; your solutions works well but it takes long time to process, Is there any way this can be simplified. the load gets aborted saying -121 error code.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 09:54:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037611#M85488</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-14T09:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037622#M85489</link>
      <description>&lt;P&gt;&lt;EM&gt;"I need a incremental number for the group APP_HOST_SYSTEM and MSG_DATETIME order by DURATION, this is to find the top delayed responses with 90th 95th percentile."&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you post some sample data&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 10:09:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037622#M85489</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2023-02-14T10:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037669#M85501</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2856"&gt;@barnabyd&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751"&gt;@vinieme12&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/85705"&gt;@SerhanKaraer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;some of the formula used to calculate the value.&lt;/P&gt;
&lt;P&gt;95th percentile = max(RowNum)-1*.950+1&lt;/P&gt;
&lt;P&gt;90th Percentile =&amp;nbsp;max(RowNum)-1*.900+1&lt;/P&gt;
&lt;P&gt;Mean and Maximum are some random values.&lt;/P&gt;
&lt;P&gt;the requirement is to get the rows falling between these percentiles, for that i wanted the rownum group by AHS &amp;amp; Date order by Duration.&lt;/P&gt;
&lt;P&gt;the below logic will pick only rows falls between these percentiles.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Select * from MyTab where RowNum BETWEEN Floor(PercentileMark90)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and CEILING(PercentileMark90)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;My major requirement is to get the first column in below table in Qliksense load. i am not able to get the row number assigned to each rows group by AHS &amp;amp; date order by Duration.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Here is the sample data -&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="725"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;RowNum&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;PercentileMark95&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;PercentileMark90&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;Mean&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;Maximum&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;DURATION&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;APP_HOST_SYSTEM&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;date&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;2545&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;10924&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1542&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;2&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;2545&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;10924&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1591&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;2545&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;10924&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1599&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;4&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;2545&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;10924&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1607&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;2545&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;10924&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1625&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;6&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;2545&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;10924&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1628&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;7&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;2545&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;10924&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1651&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;8&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;2545&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;10924&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1652&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;9&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;2545&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;10924&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1660&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;2545&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;10924&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1673&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1336&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;2&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1474&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1516&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;4&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1518&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1520&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;6&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1553&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;7&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1584&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;8&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1587&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;9&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1600&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1639&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;11&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;3152&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;9717&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1640&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;17154&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;58769&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;1801&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;18/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;2&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;17154&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;58769&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;2005&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;18/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;17154&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;58769&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;2030&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;18/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;4&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;17154&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;58769&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;2126&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;18/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;17154&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;58769&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;2237&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;18/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;6&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;17154&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;58769&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;2330&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;18/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;7&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;17154&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;58769&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;2387&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;18/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;8&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;17154&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;58769&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;2514&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;18/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;9&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;17154&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;58769&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;2560&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;18/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.55&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;9.1&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;17154&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;58769&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;2564&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;CAR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;18/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;667&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;2&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;687&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;692&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;4&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;698&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;702&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;6&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;704&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;7&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;706&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;8&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;707&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;9&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;709&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;711&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;11&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;712&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;12&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;11.45&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;10.9&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;5490&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;38626&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;715&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;13/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;692&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;2&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;700&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;705&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;4&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;707&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;5&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;721&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;6&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;724&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;7&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;727&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;8&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;736&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;9&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;739&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;10&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;760&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;11&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;769&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;12&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;774&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;13&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;781&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;14&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;792&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="72.3594px" height="25px"&gt;15&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;14.3&lt;/TD&gt;
&lt;TD width="127.016px" height="25px"&gt;13.6&lt;/TD&gt;
&lt;TD width="50.7344px" height="25px"&gt;7518&lt;/TD&gt;
&lt;TD width="76.9688px" height="25px"&gt;25689&lt;/TD&gt;
&lt;TD width="81.75px" height="25px"&gt;798&lt;/TD&gt;
&lt;TD width="144.156px" height="25px"&gt;DÉCOR&lt;/TD&gt;
&lt;TD width="85.75px" height="25px"&gt;17/10/2022&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Tue, 14 Feb 2023 11:55:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2037669#M85501</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-14T11:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038470#M85546</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751"&gt;@vinieme12&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2856"&gt;@barnabyd&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/85705"&gt;@SerhanKaraer&lt;/a&gt;&amp;nbsp; Any answers for this problem?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 02:28:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038470#M85546</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-16T02:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038475#M85547</link>
      <description>&lt;P&gt;replace the below expression&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;=max(RowNum)&lt;/STRONG&gt;-1*.950+1&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;With&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;=(count(distinct total &amp;lt;APP_HOST_SYSTEM,date&amp;gt; DURATION )-1)&lt;/STRONG&gt;*.95+1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;same for 90th&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;(count(distinct total &amp;lt;APP_HOST_SYSTEM,date&amp;gt; DURATION )-1)&lt;/STRONG&gt;*.90+1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 03:04:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038475#M85547</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2023-02-16T03:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038478#M85548</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751"&gt;@vinieme12&lt;/a&gt;&amp;nbsp; here my worry is not the percentile calculation, I need the row number column to be added to each rows group by&amp;nbsp;&lt;STRONG&gt;APP_HOST_SYSTEM &amp;amp;&amp;nbsp;date order by&amp;nbsp;DURATION&lt;SPAN&gt;&amp;nbsp;.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 03:20:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038478#M85548</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-16T03:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038479#M85549</link>
      <description>&lt;P&gt;IF the purpose of RowNo is only for calculating percentile then you can replace it with the expression i provided above&lt;/P&gt;
&lt;P&gt;If you still need RowNo in your front end table, then you can replace it with Rank()&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;aggr(rank(-DURATION),APP_HOST_SYSTEM,date,DURATION)&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 03:23:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038479#M85549</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2023-02-16T03:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038480#M85550</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751"&gt;@vinieme12&lt;/a&gt;&amp;nbsp;I do not have the first column in the data i load. based on the&amp;nbsp;&lt;SPAN&gt;group by&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;APP_HOST_SYSTEM &amp;amp;&amp;nbsp;date order by&amp;nbsp;DURATION, that column to be added to the table while LOAD. aggr can not be directly used in LOAD right?&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 03:31:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038480#M85550</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-16T03:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038481#M85551</link>
      <description>&lt;P&gt;these expressions are an alternative to creating the RowNo field at all&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 03:37:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038481#M85551</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2023-02-16T03:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038482#M85552</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751"&gt;@vinieme12&lt;/a&gt;&amp;nbsp;Is it not possible to create the row_number field, because I need to do some calculations based on that row numbers.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 03:43:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038482#M85552</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-16T03:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038483#M85553</link>
      <description>&lt;P&gt;I thought we were looking for alternatives since the field creation is slower.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 03:47:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038483#M85553</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2023-02-16T03:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to get row count for a group order by date</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038484#M85554</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751"&gt;@vinieme12&lt;/a&gt;&amp;nbsp;field creation is needed, but do we have any better ways to perform that actions.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 03:48:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-get-row-count-for-a-group-order-by-date/m-p/2038484#M85554</guid>
      <dc:creator>K7pramod</dc:creator>
      <dc:date>2023-02-16T03:48:41Z</dc:date>
    </item>
  </channel>
</rss>

