Tags in Crystal Reports

3

In my next query I try to show some tags designed in crystal reports .

How would you do that according to the AMOUNT of existence that a record has, that is to say if in Quantity = 2, two labels are generated?

This code is in the crystal file. I do not use any other language

SELECT e.numero, e.fechaemision, ei.cantidad, p.Codigo, p.descripcion
FROM entregas e
LEFT JOIN entregasitems ei ON e.RecID = ei.IDEntrega
left join productos p ON ei.IDProducto = p.RecID
WHERE e.RecID = '{?id}'
    
asked by Spinks 16.02.2016 в 05:50
source

1 answer

1

Handle the report design as a parent report. How the design of the label would be placed as sub-repot to generate n labels according to the result of the query

    
answered by 19.05.2016 в 18:24