I have a report set up that I want to print 10 records on one page, but instead it prints 10 pages, the same record 10 times on each page. Can anyone tell me what i'm doing wrong?
Printable View
I have a report set up that I want to print 10 records on one page, but instead it prints 10 pages, the same record 10 times on each page. Can anyone tell me what i'm doing wrong?
just try removing the check against begin new page.... and also check whether you have any sub sections/groups in your report...
also check your coding where you pass values to the report. i.e. in the loop have you put rs.movenext otherwise your query will pass the same values for the recordcount times in the loop...
hope you understand
Here is my problem, I have a table with a column called tagcount. Suppose a certain record in this table has value of '5' for the tagcount field. I need to show this record 5 times on the same page. Is this possible?
Assuming the field is printed in the Details section.
Add 4 additional Detail sections. Place a copy of the desired fields into each section. Create a formula to Suppress these detail sections based on the TagCount field.
I used the crystal report label wizard to create the report. 2 labels accross 5 labels down. So when displaying the lablels I want to check the tagcount field to see how many labels I need to print for that record.
Okay... Is that a question or a solution...Quote:
I used the crystal report label wizard to create the report. 2 labels accross 5 labels down. So when displaying the lablels I want to check the tagcount field to see how many labels I need to print for that record.
If you want to do something "more dirty" you can use a temporary table, so before you load the report you run a stored procedure to fill the contents in the temporary table, and you point that table into the report...
Regards,
Tribo
that was a question