How to limit the number of lines on each page?

I would like to be able to control the maximum number of lines on each page to 5. How can I accomplish this?

+4
source share
1 answer

You probably need to add the Break item to your Details block using Print When Expression, similar to this:

$V{REPORT_COUNT} % 5 == 0 
+5
source

Source: https://habr.com/ru/post/1400373/


All Articles