i am using Acces97.
i would like help with the 'recordset not updatable' message.
i have a query that uses Group by. i think that is the problem.
here is the SQL of my query:
SELECT OPCNumber, Count(OPCNumber) AS [Num], ChkOK
FROM tblOPCInfo
WHERE [NE#] Is Not Null
GROUP BY OPCNumber, ChkOK
HAVING (((Count(OPCNumber))>14) AND ((ChkOK)=False))
ORDER BY OPCNumber;
I have a form based on this query that alerts the user when OPCNumber>14. The user only needs to see this data once. He doesn't need to see all the records where the OPCNumber>14 every time he opens the form. So i made a check box with the title: "OK, Don't show again".
So if he clicks on the check box, next time he opens the form, that particular record won't show up.
But, it doesn't work because when you try click on the ChkOK box, i get 'recordset not updatable'.
Does anyone know what i should do?
thanks,
i would like help with the 'recordset not updatable' message.
i have a query that uses Group by. i think that is the problem.
here is the SQL of my query:
SELECT OPCNumber, Count(OPCNumber) AS [Num], ChkOK
FROM tblOPCInfo
WHERE [NE#] Is Not Null
GROUP BY OPCNumber, ChkOK
HAVING (((Count(OPCNumber))>14) AND ((ChkOK)=False))
ORDER BY OPCNumber;
I have a form based on this query that alerts the user when OPCNumber>14. The user only needs to see this data once. He doesn't need to see all the records where the OPCNumber>14 every time he opens the form. So i made a check box with the title: "OK, Don't show again".
So if he clicks on the check box, next time he opens the form, that particular record won't show up.
But, it doesn't work because when you try click on the ChkOK box, i get 'recordset not updatable'.
Does anyone know what i should do?
thanks,