I've created a table (tbl_Constituents) that allows a user to enter the number of "guests" that a constituent is bringing to an event. (The minimum is 1, there is no maximum although it should never be more than 10).
In a related table (tbl_Bidder_nbrs) there are two fields - the Constituent_id number (related back to tbl_Constituents) and a numeric field Bidder_Nbr. What I need to do is have a query that will enter a record in tbl_Bidder_nbrs for each "guest" from a query.
I.E., if a Constituent has three "guests" and has a Constituent id of 0001 when the query is run the tbl_Bidder_nbrs would have three records:
Constituent_id Bidder_Nbr
0001 1
0001 2
0001 3
I've searched the FAQ's and haven't found anything that I can manipulate to do this chore - probably I'm not looking in the right spot. Any help appreciated!
Thanks.
Jim
In a related table (tbl_Bidder_nbrs) there are two fields - the Constituent_id number (related back to tbl_Constituents) and a numeric field Bidder_Nbr. What I need to do is have a query that will enter a record in tbl_Bidder_nbrs for each "guest" from a query.
I.E., if a Constituent has three "guests" and has a Constituent id of 0001 when the query is run the tbl_Bidder_nbrs would have three records:
Constituent_id Bidder_Nbr
0001 1
0001 2
0001 3
I've searched the FAQ's and haven't found anything that I can manipulate to do this chore - probably I'm not looking in the right spot. Any help appreciated!
Thanks.
Jim