D
dohernan
I have a Report that runs off the following Query-
SELECT PersonnelForms2009.[Form Type], Count(PersonnelForms2009.[Form Type])
AS QTY
FROM PersonnelForms2009
WHERE ((([Completed]) Between CVDate(#9/23/2009#) And CVDate(#9/29/2009#)))
GROUP BY PersonnelForms2009.[Form Type];
I have been asked to add an additional Form Type, "Change of Address" but I
won't get the Records/numbers the way I've been getting the others- I will
just be given the final tally for each week.
I am not sure how to plug in this final number and still have my
Query/Reports work.
There's a Pie Chart in my weekly report, and the Row Source looks like-
SELECT [Form Type],Sum([QTY]) AS [SumOfQTY] FROM [StatsQ9_29_09] GROUP BY
[Form Type];
I also have a Total Sum that adds up all Form Types for the week that has to
somehow pick up the new Changes of Address total-
=Sum([QTY])
Thanks for your help.
SELECT PersonnelForms2009.[Form Type], Count(PersonnelForms2009.[Form Type])
AS QTY
FROM PersonnelForms2009
WHERE ((([Completed]) Between CVDate(#9/23/2009#) And CVDate(#9/29/2009#)))
GROUP BY PersonnelForms2009.[Form Type];
I have been asked to add an additional Form Type, "Change of Address" but I
won't get the Records/numbers the way I've been getting the others- I will
just be given the final tally for each week.
I am not sure how to plug in this final number and still have my
Query/Reports work.
There's a Pie Chart in my weekly report, and the Row Source looks like-
SELECT [Form Type],Sum([QTY]) AS [SumOfQTY] FROM [StatsQ9_29_09] GROUP BY
[Form Type];
I also have a Total Sum that adds up all Form Types for the week that has to
somehow pick up the new Changes of Address total-
=Sum([QTY])
Thanks for your help.