I have a form bound to a table that contains many yes/no fields.
I have a "count" query that returns the correct amount of "yes's" and I want to display this amount in a text box.
The query is;
SELECT Count("") AS Expr1
FROM [Patient Info]
GROUP BY [Patient Info].ReferredToChildFamilyAgency
HAVING ((([Patient Info].ReferredToChildFamilyAgency)="yes"));
Any ideas?
I have a "count" query that returns the correct amount of "yes's" and I want to display this amount in a text box.
The query is;
SELECT Count("") AS Expr1
FROM [Patient Info]
GROUP BY [Patient Info].ReferredToChildFamilyAgency
HAVING ((([Patient Info].ReferredToChildFamilyAgency)="yes"));
Any ideas?