in Microsoft Access '07, I am creating a Database that tracks whether or not a specific department is deficient in specific areas. I am using Booleans in the form of check marks to annotate which departments have which deficiencies. True = Deficient, and False = Satisfactory.
I would like to summarize this data in another table that has all of the companies departments, and all of the information of said departments, in it, while stating the number of deficiencies without telling every one else what everyone elses deficiencies are. To do this, I have tried to insert a "SELECT" function in the "Default Value" feild of the "Field Properties" table in "Design View". the function that I used was
and I get an error stating "Object invalid or no longer set."
Although I have programming experience (C++, C, C#) this is my first time using Access or SQL, so I have no clue what I am doing wrong or what syntax I should be using i pulled the function that i am using from "http://www.1keydata.co m/sql/sqlselect.html" . The tutorials dont go over Booleans very well, and "help" is, in all honesty, no help.
I would like to summarize this data in another table that has all of the companies departments, and all of the information of said departments, in it, while stating the number of deficiencies without telling every one else what everyone elses deficiencies are. To do this, I have tried to insert a "SELECT" function in the "Default Value" feild of the "Field Properties" table in "Design View". the function that I used was
Code:
SELECT COUNT ([A3005]) FROM [Table_1];
Although I have programming experience (C++, C, C#) this is my first time using Access or SQL, so I have no clue what I am doing wrong or what syntax I should be using i pulled the function that i am using from "http://www.1keydata.co m/sql/sqlselect.html" . The tutorials dont go over Booleans very well, and "help" is, in all honesty, no help.
Comment