M
MKuria
SQL I am using -
UPDATE DISTINCTROW [Hard Copy] LEFT JOIN [Append to HardCopy 1] ON [Hard
Copy].CustID = [Append to HardCopy 1].CustID SET [Append to HardCopy
1].[Response Due Date] = [Hard Copy]![Response Due Date], [Append to HardCopy
1].[Service Start Date] = [Hard Copy]![Service Start Date], [Append to
HardCopy 1].[Customer ID] = [Hard Copy]![Service Completion Date]
WITH OWNERACCESS OPTION;
I am running the SQL above and I get an error operation must use updateable
query.
CustID is the primary key on the tbl HARD COPY. On the Append to HardCopy1
(this is a query) CustID is concatenated. Is this what the issue is?
UPDATE DISTINCTROW [Hard Copy] LEFT JOIN [Append to HardCopy 1] ON [Hard
Copy].CustID = [Append to HardCopy 1].CustID SET [Append to HardCopy
1].[Response Due Date] = [Hard Copy]![Response Due Date], [Append to HardCopy
1].[Service Start Date] = [Hard Copy]![Service Start Date], [Append to
HardCopy 1].[Customer ID] = [Hard Copy]![Service Completion Date]
WITH OWNERACCESS OPTION;
I am running the SQL above and I get an error operation must use updateable
query.
CustID is the primary key on the tbl HARD COPY. On the Append to HardCopy1
(this is a query) CustID is concatenated. Is this what the issue is?