Designing my first database as a learning exercise. The database has six tables with one appears to be good relationships. However, I've noticed a peculiar thing about one table.
There are six fields in this table. Field 1 is a primary key set to autonumber. Field two is a "foreign key" that allows duplicate text. The thing I am noticing takes place in Fields 3, 4 and 5. If I make an entry into field two, that entry "predefines" what must go into fields 3, 4 and 5.
For example, suppose I enter "dog" into field 2. My entries in fields 3, 4 and 5 would need to be "pet", "bow-wow", and "four legs." Similarly, if I enter "house" in field 2, I need to enter "roof", "home", "living-place", in fields 3, 4 and 5.
I've "researched" this problem and keep coming back to autolooup queries, but don't understand how they work.
Is there a way to automate data entry between "related" fields in the same table?
There are six fields in this table. Field 1 is a primary key set to autonumber. Field two is a "foreign key" that allows duplicate text. The thing I am noticing takes place in Fields 3, 4 and 5. If I make an entry into field two, that entry "predefines" what must go into fields 3, 4 and 5.
For example, suppose I enter "dog" into field 2. My entries in fields 3, 4 and 5 would need to be "pet", "bow-wow", and "four legs." Similarly, if I enter "house" in field 2, I need to enter "roof", "home", "living-place", in fields 3, 4 and 5.
I've "researched" this problem and keep coming back to autolooup queries, but don't understand how they work.
Is there a way to automate data entry between "related" fields in the same table?