Srikanth
Srikanth

Reputation: 1010

crystal reports--Display 3 details section one after the other

I am creating a new crystal report I want to design my report in such way that Report should print 3 Data tables(ADo.net) data.

each table should display its data one after the other.

Is there anyway to do this?

I tried creating 3 different details sections and each section will display one table data but every thing getting overlapped.

I tried one detail and one report footer its working but how to put the content of third table?

Upvotes: 0

Views: 3706

Answers (1)

craig
craig

Reputation: 26262

I recommend this approach:

Main report * no database

Subreport 0 * connected to first dataset

Subreport 1 * connected to second dataset

Subreport 2 * connected to third dataset

If you need to correlate the subreport, create a parameter in the main report, then link each subreport to the main report on the parameter field. Each subreport would use the parameter field to filter your dataset.

** edit **

If the datasets are already filtered by your logic, then there is no need to link the subreports.

While it may be a bit unconventional, this approach will keep your report tidy.

Upvotes: 1

Related Questions