J
jclark88
I have a number of processes that run each day. Each process produces a
certain number of units. I am concerned with the base number of units
produced by each process every day, the aggregate number of units produced by
all processes every day, and the average aggregate number of units produced
every day by month.
(There's more than that, of course, but this is the crux of the problem.)
I have a report that is structured as:
Group By Date (by month), header1&footer1
Group By Date (total value) header2 & footer2
Sort By Process
My report roughly looks like this:
Header1: =[MONTH]
Header2: =[DATE]
Detail: =[Process Name] =[Units]
Footer2: =Sum([Units])
Footer1: =Avg([Units])
This correctly shows the daily sums, but gives me the average of the
individual processes, not the average sum. =Avg(Sum([Units])) isn't right,
but I'm not sure what is.
I'm sure this is trivial, and I'm missing something obvious, but any help is
appreciated.
certain number of units. I am concerned with the base number of units
produced by each process every day, the aggregate number of units produced by
all processes every day, and the average aggregate number of units produced
every day by month.
(There's more than that, of course, but this is the crux of the problem.)
I have a report that is structured as:
Group By Date (by month), header1&footer1
Group By Date (total value) header2 & footer2
Sort By Process
My report roughly looks like this:
Header1: =[MONTH]
Header2: =[DATE]
Detail: =[Process Name] =[Units]
Footer2: =Sum([Units])
Footer1: =Avg([Units])
This correctly shows the daily sums, but gives me the average of the
individual processes, not the average sum. =Avg(Sum([Units])) isn't right,
but I'm not sure what is.
I'm sure this is trivial, and I'm missing something obvious, but any help is
appreciated.