thanks on advance for your help.
I want to be able to print one row into multiples rows to print labels, example below.
ItemID Descripcion Qty
052 Orange Juice 300
I want to print 3 lines of the same row, and the numbers of row will be calculated (in this case) by 100, for example, so I want to print this:
ItemID Descripcion Qty
052 Orange Juice 100
052 Orange Juice 100
052 Orange Juice 100
But in the order table, I have one line of row.
Thanks for any help, I'm not sure if this is supported.
Two ways to do that, Either use Push Method of Crystal Reports i.e. Fill the DataSet object (in code) and pass into Crystal Report as DataSource or make Stored Procedure and push the data in temp table as shown here