0
votes

I am working on VS 2005 / Crystal Reports.

In the Sub report, i need to limit to 18 records per page.

I need to do paging for the Crystal Sub Report ?

I am not able to do paging for crystal sub reports ..!

3
In the Details section of your report, there is a property called "Format with multiple columns". It lets you display more than 1 record on a single row. This might solve your problem.PowerUser

3 Answers

1
votes

You can suppress the detail section with this condition:

if recordnumber>N then true else false

// N being the number of rows
0
votes

Paging is handled by the main report.

Why do you need to restrict the subreport output to 18 rows per page?

0
votes

There are multiple ways. Create a Shared variable

shared numbervar count := 0;

Increment the count variable in a formula. Place the formula in the details section and suppress it.

Conditionally suppress the Details section when the count variable is > 18.