Nov 13, 2007 #1 jamierobinson MIS Joined Jul 5, 2002 Messages 28 Location US I would like to print 3 copies of a report, changing the footer information on each copy without having to make a 3 page report. Thanks in advance
I would like to print 3 copies of a report, changing the footer information on each copy without having to make a 3 page report. Thanks in advance
Nov 13, 2007 #2 chelseatech Instructor Joined Aug 25, 2001 Messages 1,812 Location NZ Create a counter table in your report, with a numeric field with values of 1,2,3, etc in each record. Add that table to your report, and do NOT link it to your other tables. Use a selection criteria of {field} <= 3 to triple your record count. This works nicely with SQL complient databases but does have some problems with file or non SQL data sources. Editor and Publisher of Crystal Clear http://www.chelseatech.co.nz/pubs.htm Upvote 0 Downvote
Create a counter table in your report, with a numeric field with values of 1,2,3, etc in each record. Add that table to your report, and do NOT link it to your other tables. Use a selection criteria of {field} <= 3 to triple your record count. This works nicely with SQL complient databases but does have some problems with file or non SQL data sources. Editor and Publisher of Crystal Clear http://www.chelseatech.co.nz/pubs.htm