Hi everyone! I am using Crystal Reports 10 hitting an Oracle database containing information about events such as event_ID, date, time, and location. The customer wants to print tickets for the events. The report will have a string parameter {?EventID}, which will return one row of data containing date, time, etc. The report will also have two number parameters – {?StartTicketNbr} and {?EndTicketNbr}. No ticket numbers are stored in the database. The idea is to print numbered tickets for each event. For example, the first ticket would print out something like the following:
EVENT ID: B0100005
DATE: April 5, 2007
LOCATION: Crystal Mist Ballroom
TICKET NBR: 1001
The number 1001 would represent the value of the {?StartTicketNbr} parameter.
The second page, or perhaps the second column if they want to print more than one ticket on a piece of paper, would be:
EVENT ID: B0100005
DATE: April 5, 2007
LOCATION: Crystal Mist Ballroom
TICKET NBR: 1002
Subsequent pages/columns would print sequentially up to the value of the {?EndTicketNbr} parameter.
I thought this would be relatively easy, but haven’t found a way so far to do it. Thanks in advance for any ideas!
EVENT ID: B0100005
DATE: April 5, 2007
LOCATION: Crystal Mist Ballroom
TICKET NBR: 1001
The number 1001 would represent the value of the {?StartTicketNbr} parameter.
The second page, or perhaps the second column if they want to print more than one ticket on a piece of paper, would be:
EVENT ID: B0100005
DATE: April 5, 2007
LOCATION: Crystal Mist Ballroom
TICKET NBR: 1002
Subsequent pages/columns would print sequentially up to the value of the {?EndTicketNbr} parameter.
I thought this would be relatively easy, but haven’t found a way so far to do it. Thanks in advance for any ideas!