D
darees1
I have created a query which compares the utility meter readings to a
previous average. The query identifies where variances are in excess
of 30%. The problem I have is that I am attempting to use an update
query to insert the text 'excessive variance' in a comments field
against the original meter reading, but get the error 'operation must
use an updatable query'. Other posting that have solve this problem
with a DLOOKUP but I cannot see how I would this as I only want to
insert text.
The SQL code I have written is: UPDATE Readings INNER JOIN [Recent
Meter reads] ON Readings.Meter_ID = [Recent Meter reads].Meter_ID SET
Readings.Comments = "Excessive Variance";
Any help would be greatly appreciated.
previous average. The query identifies where variances are in excess
of 30%. The problem I have is that I am attempting to use an update
query to insert the text 'excessive variance' in a comments field
against the original meter reading, but get the error 'operation must
use an updatable query'. Other posting that have solve this problem
with a DLOOKUP but I cannot see how I would this as I only want to
insert text.
The SQL code I have written is: UPDATE Readings INNER JOIN [Recent
Meter reads] ON Readings.Meter_ID = [Recent Meter reads].Meter_ID SET
Readings.Comments = "Excessive Variance";
Any help would be greatly appreciated.