Home Forums Reporting Services Reporting Services How to you add summary (count) expressions for fields in a table report? RE: How to you add summary (count) expressions for fields in a table report?

  • This is what you are trying to duplicate:

    group 3 footer ="Total Products sold by " & {employeename} & "is: " & count(products_sold),employeename")

    you could do something like this:

    ="Total Products sold by " + Fields!employeename.Value + " is: " + Count(Fields!products_sold.Value)