G
GHS
I have a table that lists valid commodity types
tTypes
Name field
I have a table that lists valid manufacturers
tMfr
Type field (lookup from tTypes)
Name field
I want... a parts table that has:
tParts
ID
Type field (lookup from tTypes)
Mfr field (***lookup from tMfr but based on this current row's Type)
Name field
How can I, or should I, have the tParts.Mfr be "select distinct name from
tMfr where tMfr.Type = **THIS ROWS'S Type**"?
I'm trying to use this on a form, so maybe this is really a forms question
but it feels like I modeled the data wrong.
Thanks for your help...
--GHS
tTypes
Name field
I have a table that lists valid manufacturers
tMfr
Type field (lookup from tTypes)
Name field
I want... a parts table that has:
tParts
ID
Type field (lookup from tTypes)
Mfr field (***lookup from tMfr but based on this current row's Type)
Name field
How can I, or should I, have the tParts.Mfr be "select distinct name from
tMfr where tMfr.Type = **THIS ROWS'S Type**"?
I'm trying to use this on a form, so maybe this is really a forms question
but it feels like I modeled the data wrong.
Thanks for your help...
--GHS