Onslaughtdave
Programmer
Hi,
I am tring to get this query to work but have lost all hope
there is a yes/no field in one of my tables and im tring to get a count of true and a count of false so i can graph the results. However, im getting quite the mess!
I got it somewhat working use this query/sql statement:
TRANSFORM Count([ANum]) AS [CountOfANum] SELECT [year] FROM [First Aid analysis per year] GROUP BY [year] PIVOT [WSIB];
how would i label the values so the legend doesnt say -1 and 0 for the WSIB part (although i know what that means...others wont ;D)
---
on a related note! is there a way to get a count of ALL values of the yes/no but also have a count of the yes values?
ie - that would give me a TOTAL of all records (yes and no values) but also have a field beside it with a count of all the yes records only?
thanks!
I am tring to get this query to work but have lost all hope
there is a yes/no field in one of my tables and im tring to get a count of true and a count of false so i can graph the results. However, im getting quite the mess!
I got it somewhat working use this query/sql statement:
TRANSFORM Count([ANum]) AS [CountOfANum] SELECT [year] FROM [First Aid analysis per year] GROUP BY [year] PIVOT [WSIB];
how would i label the values so the legend doesnt say -1 and 0 for the WSIB part (although i know what that means...others wont ;D)
---
on a related note! is there a way to get a count of ALL values of the yes/no but also have a count of the yes values?
ie - that would give me a TOTAL of all records (yes and no values) but also have a field beside it with a count of all the yes records only?
thanks!