Generating records

JoeBeach

New member
Local time
Today, 01:03
Joined
Nov 28, 2003
Messages
7
Hey yall,

Here's one to stump the band.

I must find a way to generate multiple records that consist of a ticket number as one field, and whether they have been used or not as another. The ticket numbers need to be sequential, with an increase in value of 1 over each previous record.

The ticket numbers will be seven digits long. Users, or their supervisors, must be able to generate a block of ticket numbers, by designating the first and last number, and thus they decide both the ticket number value range, and the number of ticket numbers to be generated at the time.

The difference between the first and last number might be a key to record generation, but then, can you use that to tell the system to add a specific number of records? And, other than appending pre-existing records,can you command the generation of records at all?

Thanks for any answers on this.
 
You don't want a query for this, you would be better served with a VBA script that takes start and ending numbers as parameters and then generates them for you.
 

Users who are viewing this thread

Back
Top Bottom