I have another problem. I have report that has 2 page. I want to have on variables how many copies of this report I want to have.
I did something like
Code: Select all
FirstPage.NumberOfCopies = NumberOfCopies;
Code: Select all
First page, copy 1
First page, copy 2
First page, copy 3
Second page, copy 1
Second page, copy 2
Second page, copy 3
Code: Select all
First page, copy 1
Second page, copy 1
First page, copy 2
Second page, copy 2
First page, copy 3
Second page, copy 3
I have some copies of first page, then some copies of second page, but I want to have some copies of first and second page.
Is it possible to achieve what I want? Maybe I have do something another than
Code: Select all
FirstPage.NumberOfCopies = NumberOfCopies;
Thank you for help in advance.