Tupacmoche
Registered User.
- Local time
- Today, 05:33
- Joined
- Apr 28, 2008
- Messages
- 291
I have an sql linked table that has a bit column used to indicate that a job is complete. The default value is always 0 (zero). On the front end there is a check box control to change the row to complete. Since, the only time both choices are available is when records are complete, I set up a table like such: See attached picture
The row source for the Combo box is this sql query:
SELECT tblComplete.Description, tblComplete.Complete
FROM tblComplete;
So, I can select Complete which is 'Yes' and Incomplete which is No, I should mention that the second column is bound. But, when I select All which is * , I get Run-time error 3075. Syntax error(missing operator) in query expression'(Complete) = *'.
Clearly '*' is not a value in the table, only -1, and 0. So, how can I resolve this and get all values?
The row source for the Combo box is this sql query:
SELECT tblComplete.Description, tblComplete.Complete
FROM tblComplete;
So, I can select Complete which is 'Yes' and Incomplete which is No, I should mention that the second column is bound. But, when I select All which is * , I get Run-time error 3075. Syntax error(missing operator) in query expression'(Complete) = *'.
Clearly '*' is not a value in the table, only -1, and 0. So, how can I resolve this and get all values?