I have a table (tbl_target) with two columns, Target & Product, both primary required keys. (Products are on another table and are validated in tbl_target) I have a form based on the main table (FAQ) which has both Target and Product. When the user moves to the Target field I want one of two things to happen. First choice = since the form already knows the product, have the combo box show only the appropriate targets for the product chosen based on the combinations in tbl_target. I couldn’t figure out how to do that as I’m quite the newbie. Second choice = change the default combo box to display both fields from tbl_target so the user can choose the correct one. This works as long as Target is the first column, but I want Product to be so they can quickly find just the appropriate targets for the product. No matter what “Bound Column” property value I choose (0,1,2) it returns the first column from the query which populates the combo box.
So, two questions…
1) What am I doing wrong?
2) How can I make what I consider the better choice, choice 1, work?