|
|
Question : Percentage Calculation
|
|
I have a feild in a table that is a check box. Is it possible to run a query and calculate the percentage of check boxes that are checked. If so how?
Thanks
|
Answer : Percentage Calculation
|
|
This query calculates quantity of all records and checked checkboxes. SELECT Abs(Sum([tblName].[fldCheckBox])) AS [Sum], (SELECT Count(fldCheckBox) AS [count] FROM tblName) AS [Count] FROM tblName WHERE fldCheckBox=True;
Wait for tomorrow and i'll finish this query so it will calculate percentage. Regards, Goliak.
|
|
|
|