Syntax error Help....
I have a form with a combo box that is valued based on a table (Contacts). The table has two four columns: ID, First Name, Last Name and DInteg ( Yes/No ). Trying to filter the values on the combo box to only display First Name and Last Name that has a DInteg value of 'Yes'.
Here is my Row Source Code: - syntax error
I also tried DoCmd.ApplyFilter , "[DInteg]<>'Yes' on afterUpdate - not working either
I have a form with a combo box that is valued based on a table (Contacts). The table has two four columns: ID, First Name, Last Name and DInteg ( Yes/No ). Trying to filter the values on the combo box to only display First Name and Last Name that has a DInteg value of 'Yes'.
Here is my Row Source Code: - syntax error
Code:
SELECT Contacts.ID, Contacts.[First Name] & " " & Contacts.[Last Name] AS Expr1 FROM Contacts ORDER BY
Contacts.[First Name] & " " & WHERE IIF ([Forms]![Issues2]![Opened By] = Yes,(Contacts.DInteg);
Last edited: