I use Access extensively and have become fairly good at accomplishing what I need done. This one stumps me, though.
I have a Customer table (tblCust)
and a Transactions table (tblTrans)with a one-to-many relationship.
Each transaction can have many different documents associated with it. I have a separate table (tblDocs) with fields such as DocName, Required? (yes/no), Received? (yes,no). A one-to-many relationship works great in selecting only applicable documents. However, and here's the rub, my management wants the entire list of 40 documents to pull up with each Transaction. Then, the Required docs can be checked and marked received as work continues.
Each transaction in tblTrans will have only one set of all records in the tblDocs associated with it. I cannot figure out how to get the complete list of all 40 records show up with each transaction.
I have tried setting a one-to-one relationship between tblTrans and tblDocs but the relationship defaults to one-to-many. (Do I have the primary key field in tblDocs set incorrectly?)
Suggestions?
Thanks.
Dan
I have a Customer table (tblCust)
and a Transactions table (tblTrans)with a one-to-many relationship.
Each transaction can have many different documents associated with it. I have a separate table (tblDocs) with fields such as DocName, Required? (yes/no), Received? (yes,no). A one-to-many relationship works great in selecting only applicable documents. However, and here's the rub, my management wants the entire list of 40 documents to pull up with each Transaction. Then, the Required docs can be checked and marked received as work continues.
Each transaction in tblTrans will have only one set of all records in the tblDocs associated with it. I cannot figure out how to get the complete list of all 40 records show up with each transaction.
I have tried setting a one-to-one relationship between tblTrans and tblDocs but the relationship defaults to one-to-many. (Do I have the primary key field in tblDocs set incorrectly?)
Suggestions?
Thanks.
Dan