I have two fields. One is a date field the other is a text field. I want to count all of the YES values in the one field and group them by date:
I have written this query,
SELECT Contact.HVDate, Count(Contact.[Recieve Ballotx]) AS [CountOfRecieve Ballotx]
FROM Contact
GROUP BY Contact.HVDate
HAVING (((Contact.[Recieve Ballotx])="YES"));
I keep getting an aggregate function error. Can you help me with this
I have written this query,
SELECT Contact.HVDate, Count(Contact.[Recieve Ballotx]) AS [CountOfRecieve Ballotx]
FROM Contact
GROUP BY Contact.HVDate
HAVING (((Contact.[Recieve Ballotx])="YES"));
I keep getting an aggregate function error. Can you help me with this