J
jmoore
The query below works fine, except I need to use it for a subreport and link
it by qYr2CommentsSummary_A_Union.CNTYNAME. When I add this field to the
select statement and try to open in datasheet view I get an error because
CNTYNAME is not part of an aggregate function. Can you please explain how to
correct this. Thanks.
Select qYr2CommentsSummary_A_Union.Question,
qYr2CommentsSummary_A_Union.Answer, Count
(qYr2CommentsSummary_A_Union.Answer) AS CountofComments
FROM qYr2CommentsSummary_A_Union
GROUP BY qYr2CommentsSummary_A_Union.Question,
qYr2CommentsSummary_A_Union.Answer;
it by qYr2CommentsSummary_A_Union.CNTYNAME. When I add this field to the
select statement and try to open in datasheet view I get an error because
CNTYNAME is not part of an aggregate function. Can you please explain how to
correct this. Thanks.
Select qYr2CommentsSummary_A_Union.Question,
qYr2CommentsSummary_A_Union.Answer, Count
(qYr2CommentsSummary_A_Union.Answer) AS CountofComments
FROM qYr2CommentsSummary_A_Union
GROUP BY qYr2CommentsSummary_A_Union.Question,
qYr2CommentsSummary_A_Union.Answer;