Query:
This pretty simple query does not allow data entry in datasheet view; why?
I looked at http://allenbrowne.com/ser-61.html
but still cannot figure out the problem. tblTesting.TestID and tblTestType.TestTypeID are primary keys and are indexed to allow no duplicates. tblTesting.TestTypeID is a Number data type. If I remove the join between the tables, the query is then updateable, but I need tblTestType.TestType in the query for the form that is based on the query. Query recordset property is set to Dynaset. I must be missing something simple?
Code:
SELECT tblTesting.TestID, tblTesting.StudentID, tblTesting.TestDate, tblTestType.TestType, tblTesting.Form, tblTesting.SS, tblTesting.GE, tblTesting.NextForm, tblTesting.Memo
FROM tblTestType INNER JOIN tblTesting ON tblTestType.TestTypeID = tblTesting.TestTypeID
ORDER BY tblTesting.StudentID, tblTesting.TestDate DESC;
I looked at http://allenbrowne.com/ser-61.html
but still cannot figure out the problem. tblTesting.TestID and tblTestType.TestTypeID are primary keys and are indexed to allow no duplicates. tblTesting.TestTypeID is a Number data type. If I remove the join between the tables, the query is then updateable, but I need tblTestType.TestType in the query for the form that is based on the query. Query recordset property is set to Dynaset. I must be missing something simple?