I am trying to create a query and I’m about to pull out my hair. Please help…
I have a table with test info. One of the fields in the table contains a true/false value indicating if the test was INVALID (true = Invalid, false = valid)
I want to create a query that returns what percentage (or fraction) of the tests were valid (i.e. NOT INVALID)
For Example: if Test_1 occurred 100 times, and 7 of those had INVALID marked as true, the calculated result should be 93%
The query should give results grouped by test
Test_1 93%
Test_2 85%
Test_3 100%
The query is going to be used for a bar chart on a graph that displays % Valid vs Test. TIA...
I have a table with test info. One of the fields in the table contains a true/false value indicating if the test was INVALID (true = Invalid, false = valid)
I want to create a query that returns what percentage (or fraction) of the tests were valid (i.e. NOT INVALID)
For Example: if Test_1 occurred 100 times, and 7 of those had INVALID marked as true, the calculated result should be 93%
The query should give results grouped by test
Test_1 93%
Test_2 85%
Test_3 100%
The query is going to be used for a bar chart on a graph that displays % Valid vs Test. TIA...