G
Guest
Can anyone tell me why this update query does not work?
UPDATE tblLots INNER JOIN qrySumOfPmtsNotPosted ON tblLots.ACCTNBR =
qrySumOfPmtsNotPosted.AcctNbr SET tblLots.ThisYrPaid =
Nz([tblLots]![ThisYrPaid])+Nz([qrySumOfPmts]![SumOfCurrentYearDuesPd])
WHERE (((qrySumOfPmtsNotPosted.TotalsUpdated)=False));
I keep getting a message that the "Operation must use an updateable query."
Thank you for your consideration.
UPDATE tblLots INNER JOIN qrySumOfPmtsNotPosted ON tblLots.ACCTNBR =
qrySumOfPmtsNotPosted.AcctNbr SET tblLots.ThisYrPaid =
Nz([tblLots]![ThisYrPaid])+Nz([qrySumOfPmts]![SumOfCurrentYearDuesPd])
WHERE (((qrySumOfPmtsNotPosted.TotalsUpdated)=False));
I keep getting a message that the "Operation must use an updateable query."
Thank you for your consideration.