How can you get the average of the count of records in Reporting Services

Posted by Tim Coker on Stack Overflow See other posts from Stack Overflow or by Tim Coker
Published on 2010-03-29T14:09:53Z Indexed on 2010/03/29 14:13 UTC
Read the original article Hit count: 134

I have a report where I'm counting the number of records for a day. At the bottom, I have the total records for that time period. I'd like to display the average records for each day. An example:

Day Tests 1/1/2010 5 1/2/2010 10 1/3/2010 8 Average 7.7 Total 23

I can accomplish this by aggregating the data by date in SQL then just doing the Average and Sum of the count from SQL, but that would complicate the report considerably as I'm doing other column filters for the types of tests performed. There seems to be a simple way to accomplish this that I'm missing. I can't do Average(Count(field)) in SSRS, unfortunately.

Is there something I'm missing, or is there really not a way to accomplish this simply?

© Stack Overflow or respective owner

Related posts about reporting-services

Related posts about ssrs-2008