I am trying to update a field within a linked table, but get the error message:
"Operation must use an updateable query"
I have a table (tblPOline) that is linked, and my update query is using another nested query to "filter the records that need to be updated.
The SQL is:
UPDATE qryCurrentProgress INNER JOIN tblPOLine ON qryCurrentProgress.POlineID = tblPOLine.Id SET tblPOLine.CurrentTotal = 1;
The strange thing is that if i do not include the "nested" query, this update works - so I am not sure if it is an issue to do with the linked table.
Any clues would be useful as i am stumped on this one!
Many thanks in advance.
Andrew
"Operation must use an updateable query"
I have a table (tblPOline) that is linked, and my update query is using another nested query to "filter the records that need to be updated.
The SQL is:
UPDATE qryCurrentProgress INNER JOIN tblPOLine ON qryCurrentProgress.POlineID = tblPOLine.Id SET tblPOLine.CurrentTotal = 1;
The strange thing is that if i do not include the "nested" query, this update works - so I am not sure if it is an issue to do with the linked table.
Any clues would be useful as i am stumped on this one!
Many thanks in advance.
Andrew