I'm having problems with the following query:
SELECT gcNo, yes_memberName, SUM(IIf(yes_memberName <> null,1,0)) as total_yes
FROM ballotReportData
Group by gcNo, yes_memberName;
I want to display the total amount of yes_memberNames that aren't null for each gcNo.
For example, I want the...