Jeff,
Glad to.
The database will have the shipping address of each store.
I need to select a group of stores, then generate a table
of information with the store address plus additional
colums from a second and third table.
For each instance found in the address table, 1 record
should be created in the Process table with all the
address information + Ground Shipping options. The same
query should also create 50 records in the Process table
with all the same address information + Overnight shipping
options.
The resulting table is attached, via ODBC, to an automated
shipping system for batch processing of shipping lables.
There is no count or secondary lookup available via the
ODBC connection, so for each record selected in the
address table, 51 records need to be created in the
Process table.
tblAddresses contains the shipping address of all the
branch offices. It has a Y/N column named Process.
tblAddOn contains information about Shipping options,
Service level, package weight, and other requred items
that change depending on the service needed.
This table will have only 2 records
tblProcess is created every time the query is run, it will
contain 51 records for each "Y" found in the Process
column in tblAddresses. The record will constist of the
values in tblAddreses plus the values from tblAddOn plus
an AutoIncrement count field.
Once the batch has been run, the data is no longer needed.
Does this make sense?
Thanks
Don