Y
Yeahyeahyeah
I am attempting to build a report that displays data about the month by month
count of deliveries at 12 different job sites. The report lists each site
vertically with the months of the year running horizontally.
So it looks something like this:
Jan Feb Mar Apr May Jun Jul Aug …etc.
Site 1
Site 2
Site 3
I have the underlying query set up to it groups by both site and month so
the query results look something like this.
JobSite Month DeliveryCount
Site 1 09 1
Site 2 01 1
Site 2 02 4
Site 2 04 3
Site 3 01 2
Site 3 02 1
… (hopefully you get the idea).
Some sites only get one or two deliveries a year and other sites get
multiple deliveries each month.
So here’s the question: What kind of expression do I use in the text box
under the individual months in order to display just the number of deliveries
that month for that site?
My own very lame attempt looked something like this for January:
If [Month]=01 then =[DeliveryCount], else = 0
This wasn’t worth a hoot. So if someone could help me figure out the correct
formula I’d me quite grateful.
Many thanks,
David
count of deliveries at 12 different job sites. The report lists each site
vertically with the months of the year running horizontally.
So it looks something like this:
Jan Feb Mar Apr May Jun Jul Aug …etc.
Site 1
Site 2
Site 3
I have the underlying query set up to it groups by both site and month so
the query results look something like this.
JobSite Month DeliveryCount
Site 1 09 1
Site 2 01 1
Site 2 02 4
Site 2 04 3
Site 3 01 2
Site 3 02 1
… (hopefully you get the idea).
Some sites only get one or two deliveries a year and other sites get
multiple deliveries each month.
So here’s the question: What kind of expression do I use in the text box
under the individual months in order to display just the number of deliveries
that month for that site?
My own very lame attempt looked something like this for January:
If [Month]=01 then =[DeliveryCount], else = 0
This wasn’t worth a hoot. So if someone could help me figure out the correct
formula I’d me quite grateful.
Many thanks,
David