Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
sijojoseph22
Creator II
Creator II

Grouping the records in pivot table

Hi All,

We are having 15 records in the attached qvw.

We need to make the  as per the screen shot. We need this to generate a report in Nprinting.
1-5 records as value 'First Five'
  6-10 records as value 'Second Five'
11-15 records as value 'Third Five'

image 2.png

Thanks,

Sijo

Labels (1)
1 Solution

Accepted Solutions
rubenmarin
MVP
MVP

Hi Sijo, you can use this expression:

=If(RowNo(TOTAL)<=5, 'First five',

  If(RowNo(TOTAL)<=10, 'Second five',

   If(RowNo(TOTAL)<=15, 'Third five')))

View solution in original post

2 Replies
rubenmarin
MVP
MVP

Hi Sijo, you can use this expression:

=If(RowNo(TOTAL)<=5, 'First five',

  If(RowNo(TOTAL)<=10, 'Second five',

   If(RowNo(TOTAL)<=15, 'Third five')))

maximiliano_vel
Partner - Creator III
Partner - Creator III

Your records should be in order.

See attached file