imsaurabhp
(Saurabh Patil)
September 28, 2022, 10:01pm
1
I have an order with Order quantity as 3. I want to print the report 3 times. Is it possible to print a report multiple time based on a value dynamically?
1 Like
utaylor
(Utah Taylor)
September 28, 2022, 10:09pm
2
I’ve seen people do this:
There was a developer at our company before me that created a UD table with 100 rows. In each row’s number01 field, there was an incremented value starting with 1. So you end up with 100 rows numbered 1 through 100. They then added that UD table in the RDD or BAQ if it was a BAQ report by joining it to the desired table on DesiredTable.Company = UDTable.Company and UDTable.Number01 <= @NumberOfCopies… which could be passed via a BAQ report option or just statically set, or as Calvin mentioned a…
1 Like
imsaurabhp
(Saurabh Patil)
September 29, 2022, 12:01pm
3
Thank you for the help @utaylor