views:

18

answers:

1

for example if label count is 3 in database, the label should be printed 3 times in the report.

+1  A: 

Don't try to do this in Crystal, do it on the back end (or an intermediate back end if you can't modify the one you have).

Explode each row with its label count into the number of rows you want in a temp table, or something, then build the report off that datasource.

Beth