Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Multiple Bandings pr. page (QlikView Reports)

Is it possible to have multiple "Bandings" per page in a QlikView report??

I have a QlikView report where I want to print a recordset where I looping each row and print the data with a nice layout. I can do this by using  "Banding" and looping over the rowID. This give me ONE row of data per page. But I want to multiple data rows per page (like 2 or 3 rows). Is there a way to accomplish this?

Thanks!

1 Reply
marcus_sommer

You could create an extra field within the script for this banding, for example:

ceil(rowID / 3) as rowID_Cluster

- Marcus