D
DoveArrow
I'm sure that you've probably guessed why I'm here. I have three
tables, a Person Table, an Item Table and a Sub Item Table. I want to
create a fourth table where I can store which Items a Person has. Only
a few Items have Sub Items, and those that do have Sub Items only have
a few from the list. Because of this, I want a ComboBox that will
select only the Sub Items that apply to each item. I therefore went
into the Design View of the Table, clicked on the Lookup Tab, and
entered the following statement for the row source.
Select [SubItemID], [SubItem] From Table2 Where [ItemID] = [Table4]!
[ItemID]
Unfortunately, this doesn't work the way I want it to. Instead of
pulling the Item ID from my fourth table, a message box pops up that
says "Enter Parameter Value for Characters and Skills Table!Skill ID."
Of course, the whole point of telling it to pull the Item ID was so
that I wouldn't have to do this. So my question is, how do I get it to
do what I want it to do? Any advice would be appreciated.
tables, a Person Table, an Item Table and a Sub Item Table. I want to
create a fourth table where I can store which Items a Person has. Only
a few Items have Sub Items, and those that do have Sub Items only have
a few from the list. Because of this, I want a ComboBox that will
select only the Sub Items that apply to each item. I therefore went
into the Design View of the Table, clicked on the Lookup Tab, and
entered the following statement for the row source.
Select [SubItemID], [SubItem] From Table2 Where [ItemID] = [Table4]!
[ItemID]
Unfortunately, this doesn't work the way I want it to. Instead of
pulling the Item ID from my fourth table, a message box pops up that
says "Enter Parameter Value for Characters and Skills Table!Skill ID."
Of course, the whole point of telling it to pull the Item ID was so
that I wouldn't have to do this. So my question is, how do I get it to
do what I want it to do? Any advice would be appreciated.