Here might be a better way to ask the question. I have twelve reports.
Each
report has its own query where the data is filtered. Each report shows the
formatted data along with a couple sums (basically adding up the cost
(estimated and actual) per month =Sum([Cost (est)]) and =Sum([Cost
(actual)]). Since each of the 12 reports, in addition to having the sums,
also has the details- I want to create a consolidated report. How can I
create another report and bring those 24 sums from the 12 other reports
into
this one easy to see page?
Thank you very much in advance!!
wesley weise said:
I still don't understand- I happen to be a novice at Access. Are you
saying
to do away with the report and use a query instead? The reason I was
using a
report was that I need some way to display and show the numberss (along
with
other information- the details behind the numbers). I was hoping that I
could
simply create a new report and point to each value in the monthly
reports.
Besides showing the estimated and actual sums by month, I also need to
show
them for coordinator, type, and target audience. The individual reports
for
each category are already built. I would now like to bring each of the
sum
values into one consolidated report. How?
Thanks much.
:
I have multiple reports showing the details of underlying fields. For
example, I have twelve reports that break out my data by month. (Each
report
points to its specific query where the data is actually filtered from
the
master table.) Each report sums two fields- estimated cost and actual
cost.
How do I create a separate report (a consolidation) that shows me just
the
sum totals for the two fields for each of the months?
Not clear which 12 months you want to report here. Maybe
this query can be used for the summary report:
SELECT Format(transdate, "yyyymm"),
Sum(estimate), Sum(cost)
FROM mastertable
GROUP BY Format(transdate, "yyyymm")
WHERE transdate Between DateAdd("yyyy", -1, Date())
And Date()
I think that will calculate all the values you want and the
report should then be trivial.