Off of my test db, which I use to try to figure things out, and keep it very simple, I have 3 tables.
Task Orders, Vouchers, and intermediate table TaskOrder_Voucher
(created due to the fact that it is a many-to-many relationship between Task Orders and Vouchers)
Task Orders has a composite PK of Task Order and Region, Vouchers has a simple PK of just Voucher Num. The Intermediate table uses a composite PK of Task Order, Voucher and Region.
I have the relationships set up so that all the primary keys are used as the foreign keys as well. (Task Orders.Task Order <--> TaskOrder_Voucher.Task Order, etc) Both relationships are a one-to-many, with the many being on the intermediate table's side.
My Form record source is the Task Order Table, and my subform info is a query based on the relationship of the Voucher table and the TaskOrder_Voucher table.
Both Child and Master Properties say Task Order;Region.
------
What is frustrating the most, is this is even simpler than that. It is as easy as that I have 2 tables that when I enter info on one table, and that record is linked to the other table, I want the info to appear there as well. I am either missing something easy or doing something very much wrong.
Thanks for any help
Jacob