G
Guest
How can I link two tables within Access so that records entered into one are
automatically entered into the other?
automatically entered into the other?
cipher said:How can I link two tables within Access so that records entered into one are
automatically entered into the other?
You can't. That's not how related table work. A relationship can cascade the
update of a field with a unique index to a related field in another table or
cascade the deletion of a parent record related to a child table, but
relationships will not create records in related tables.
If you use a database engine that supports triggers (Oracle, SQL Server, etc.),
you could create an insert trigger that would do this, but even then it would be
a highly unusual practice.