I want to join one of my linked tables to another table I created in my database. However, when I try to update the field from the Linked table over to my table, I get an "not updateable error message.
UPDATE dbo_localUnitAudit INNER JOIN DelinquentAudits ON (dbo_localUnitAudit.LocalUnitCd = DelinquentAudits.LocalUnitCd) AND (dbo_localUnitAudit.LocalUnitType = DelinquentAudits.LocalUnitType) AND (dbo_localUnitAudit.FiscalYear = DelinquentAudits.FiscalYear) AND (dbo_localUnitAudit.CountyCd = DelinquentAudits.CountyCd) SET dbo_localUnitAudit.ID = [DelinquentAudits]![ID];
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.