Daily, Weekly, Monthly Totals

J

jlo

I am trying to create a report that shows daily, weekly, monthly totals by
dtmCreationDate.

So far it does calculate daily totals by the sorting and grouping box set to
Day. I then need to know how to get it to recognize weeks and give a total
as well as the entire month.

I am really struggling at this.

Thanks!
 
M

Marshall Barton

jlo said:
I am trying to create a report that shows daily, weekly, monthly totals by
dtmCreationDate.

So far it does calculate daily totals by the sorting and grouping box set to
Day. I then need to know how to get it to recognize weeks and give a total
as well as the entire month.


Try adding more groups. First one for months using an
expression like =Format(dtmCreationDate, "yyyymm"), second
group using =DatePart("ww", dtmCreationDate) and the third
group as the one you have now. Then the group header and/or
footer sections can display the various totals by using the
same expression you have for the daily total.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Monthly totals in report? 4
Report totals 3
Summary Report 2
count values not including duplicates 1
Weekly totals and monthly totals 1
Trouble with my sorting and grouping 2
Running Sum 13
Workbook 1

Top