UNC_Access
Registered User.
- Local time
- Today, 12:04
- Joined
- Oct 24, 2012
- Messages
- 42
Hi! Really need some help here - I think this is pretty basic, but I'm spinning my wheels!
Ultimate Goal
My Problem
Objects I Am Working With
Objects Specifics:
Ultimate Goal
- I want end users to open a data entry form, 1st select a "category" value from a combo box, and 2nd select a "goal" value from a combo box. Immediately after the "category" and "goal" values are selected in the form, they are automatically stored in an underlying table (tbl_goals)
My Problem
- I can't figure out how to have the "goal" combo box only list the goals relevant to the category chosen
Objects I Am Working With
- form_a
- query_a
- table_category (a list of categories)
- table_goal (a list of goals, each associated with a category)
Objects Specifics:
- form_a contains fields from query_a
- query_a (which contains no calculated fields and is updateable) contains fields from table_goal
- form_a, table_goal and query_a have a "category" field and a "goal" field
- In form_a, the "category" field's Control Source is "category"
- In form_a, the "goal" field's Control Source is "goal"
- The "category" field in table_goal is a lookup field, which references a record in the "category" field in table_category
- There is a one-to-many relationship between "category" and "goal" (one category can have multiple goals)