Access 2003
I have a form that is designed for semi-technical and non-technical to enter budget plans for the upcoming year. The form is based upon 5 primary tables/objects (Employees, Trade Associations, Membership, Conferences).
Employees:
Trade Associations:1 to many with Employees
Membership items: 1 to many with Trade Associations
Conferences: 1 to many with Trade Associations
Conferences Items: 1 to many with Conferences
The challenge is in the relationship between Trade Assocs > Conferences > Conference Items
I need the Conference Items to roll up to the Trade Association level. So I have used some VBA to pass values from parent to child form. The problem is that the TradeAssocID only populates on the first Conference Item, all following items are null.
I have done this successfully before, so I am frustrated. What am I missing. If the DB is helpful, I can post.
I have a form that is designed for semi-technical and non-technical to enter budget plans for the upcoming year. The form is based upon 5 primary tables/objects (Employees, Trade Associations, Membership, Conferences).
Employees:
Trade Associations:1 to many with Employees
Membership items: 1 to many with Trade Associations
Conferences: 1 to many with Trade Associations
Conferences Items: 1 to many with Conferences
The challenge is in the relationship between Trade Assocs > Conferences > Conference Items
I need the Conference Items to roll up to the Trade Association level. So I have used some VBA to pass values from parent to child form. The problem is that the TradeAssocID only populates on the first Conference Item, all following items are null.
Code:
Me![Expense Details subform2].Form!fkTradeAssocID = Me!TradeAssocID
I have done this successfully before, so I am frustrated. What am I missing. If the DB is helpful, I can post.