Hi,
I have a table with a value that need to be checked via a checkbox(lets call it checkValue). The database saves this value as -1 if checked. (I have a SQL Server 2005 as Backend and the field is a bit)
If I run a query to show all the records that have been checked it works fine (checkValue=true)
But i can't get it to show me the unselected values (represented as 0 in the table). I tried checkValue = False and checkValue = 0. But I get an empty recordset back(But I know there a unselected records).
I even used the filter provided by access: Right click with the mouse and choose: is not selected
Any ideas on this?
I have a table with a value that need to be checked via a checkbox(lets call it checkValue). The database saves this value as -1 if checked. (I have a SQL Server 2005 as Backend and the field is a bit)
If I run a query to show all the records that have been checked it works fine (checkValue=true)
But i can't get it to show me the unselected values (represented as 0 in the table). I tried checkValue = False and checkValue = 0. But I get an empty recordset back(But I know there a unselected records).
I even used the filter provided by access: Right click with the mouse and choose: is not selected
Any ideas on this?