S
Stephan&Ralph
Try using the IIF function to generate a number that you can sum:
SELECT Sum(IIF([A] = 'YES', 1, 0)) AS YesOnA, Sum(IIF([A] = 'NO', 1, 0)) AS
NoOnA, ...
This isn't mine but it's posted by Jonh Vinson on this newsgroup few days
ago. And it was a great solution.
Bye
SELECT Sum(IIF([A] = 'YES', 1, 0)) AS YesOnA, Sum(IIF([A] = 'NO', 1, 0)) AS
NoOnA, ...
This isn't mine but it's posted by Jonh Vinson on this newsgroup few days
ago. And it was a great solution.
Bye