I have 2 forms. The data entry form allows for new items to be entered into a main table only but the main table has relationships to other tables. I have comboboxes so the users can select from any item they wish and it is to populate to the main table, however I think it needs to only populate the primary key information if it is based on normalization. For example
main table items:
QID, stcd, progid, yr, mth, prodid, measureid, mbrt, mbrc, mbrr, effect
relation tables:
state: stcd
program: prodid, prognm, progdesc
yr: yr
mth: mth
product: prodid, prodnm
measure: measureid, measurenm, measuredesc, measuresub
So, I create my relationship and my query but when I select items to populate in each combobox I have for example, select prodnm from product and select stcd from state
So, they can see what they need to. If I bind to the items, it will update not only in my main table but change items in the relationship tables. So, I have to do unbound. But then unboud, when the edit button is selected, they are not able to see anything to be edited because the items are not bound.
Does this mean I cannot have a data entry and update form at same time? That I either have 1 form that is data entry and 1 form that is an update form????
main table items:
QID, stcd, progid, yr, mth, prodid, measureid, mbrt, mbrc, mbrr, effect
relation tables:
state: stcd
program: prodid, prognm, progdesc
yr: yr
mth: mth
product: prodid, prodnm
measure: measureid, measurenm, measuredesc, measuresub
So, I create my relationship and my query but when I select items to populate in each combobox I have for example, select prodnm from product and select stcd from state
So, they can see what they need to. If I bind to the items, it will update not only in my main table but change items in the relationship tables. So, I have to do unbound. But then unboud, when the edit button is selected, they are not able to see anything to be edited because the items are not bound.
Does this mean I cannot have a data entry and update form at same time? That I either have 1 form that is data entry and 1 form that is an update form????