DanG
Registered User.
- Local time
- Today, 11:32
- Joined
- Nov 4, 2004
- Messages
- 477
Not sure if my approach is right, but here goes...
I haev to tables:
1. tblMSR (PK is MSRID (autonumber))
2. tblPrntReq (FK is FKMSRID) (tblPrntReq is sub of tblMSR)
I want to automatically add records in bulk to these two tables. So the first thing I want to do is add one record to the tblMSR table and then if possible add one record to tblPrntReq (only one record and never more). I would prefer to do this in one pass, but it seems you can only append records to a TABLE and not a QUERY. I was thinking appending to query because then I could combine both tables since I was just adding 1 record to each table.
I have all the information to feed the two tables in one query, but break it into two if needed.
Any ideas would be appreciated.
Thank you
I haev to tables:
1. tblMSR (PK is MSRID (autonumber))
2. tblPrntReq (FK is FKMSRID) (tblPrntReq is sub of tblMSR)
I want to automatically add records in bulk to these two tables. So the first thing I want to do is add one record to the tblMSR table and then if possible add one record to tblPrntReq (only one record and never more). I would prefer to do this in one pass, but it seems you can only append records to a TABLE and not a QUERY. I was thinking appending to query because then I could combine both tables since I was just adding 1 record to each table.
I have all the information to feed the two tables in one query, but break it into two if needed.
Any ideas would be appreciated.
Thank you