this really is a 101,
(and also that area that 'with some minor embarrassment) I've never been able to get right)
relating 2 tables...
the primary (1`) table (tblManufacturerRepAgencies) is the "one" side
the secondary (2`) table(tblManufacturers) is the "many" side
for the related field (RepAgency)
...in the 2`table, whenever the field has a value, it will always also exist in the 1`table;
2` table it will not always have a value in that field; it may be null.
i need to enforce referential integrity so that when a record in 1`is changed, the change also occurs in 2`
i ran a query to find any records in 2` that had a field value that was not in 1` and have corrected all errors;
the only records in 2` that do not have a match in 1` are blank (in the related field)
yet when i set up the relationship
Include ALL records from 'tblManufacturerRepAgencies'
and only those records from 'tblManufacturers' where the joined fields are equal.
and then check enforce... cascade update
...I get the usual: "can't do"
utterly stumped
with appreciation in advance,
m.