I am using Access 2010, and I'm trying to design a form (with fields from 3 tables).
So in design view I'm trying to create a Button and using the button wizard I'm selling the Add new record facility.
However when I click on the add button, I'm always getting the error message,
You can't go to the specified record. Recordest type is set as DYNASET
Recordsource SQL is as follows SELECT PERSON.[ID CARD NO], PERSON.SURNAME, PERSON.FIRST_NAME, POLICY.POL_NO, CLAIM.CLM_NO, CLAIMLINE.TYPE, CLAIMLINE.CLM_AMT FROM ((PERSON LEFT JOIN POLICY ON PERSON.[ID CARD NO] = POLICY.[ID CARD NO]) LEFT JOIN CLAIM ON POLICY.[POL_NO] = CLAIM.[POL_NO]) LEFT JOIN CLAIMLINE ON CLAIM.[CLM_NO] = CLAIMLINE.[CLM_NO];
How can this be fixed?