The actual query is
UPDATE WardDateTotals INNER JOIN qryManagementCount
ON (WardDateTotals.[Ward name] = qryManagementCount.[Ward
name]) AND (WardDateTotals.Date =
qryManagementCount.Date)
SET WardDateTotals.Management =
qryManagementCount.HowMany;
When I try to run the query I get the error message:
'Operation must use an updateable query.'
-----Original Message-----
UPDATE A , B
SET A.X = B.Y
WHERE A.C = B.D
OR perhaps more efficient...
UPDATE A INNER JOIN B
.