HI,
I have a query recordset that I can not update - the little message in the status bar says something to the effect of this when I try to update in the form.
My database is split frontend/backend and I can update the data tables on there own from the frontend.
I have also tried this from the query result set and then I cant update the data.
I have seen there are a few reasons for this, but none would appear to apply to this query:
Any ideas?
Thanks
Al
I have a query recordset that I can not update - the little message in the status bar says something to the effect of this when I try to update in the form.
My database is split frontend/backend and I can update the data tables on there own from the frontend.
I have also tried this from the query result set and then I cant update the data.
I have seen there are a few reasons for this, but none would appear to apply to this query:
Code:
SELECT MAS.StartDate, MAS.Code, MAS.Result, *
FROM tbl_FV INNER JOIN MAS ON tbl_FV.ID=MAS.ID
WHERE City='Houston' AND DateDiff("d", DateStart, Now() ) -3<0;
Any ideas?
Thanks
Al