I have a list of Managers in a Row Group. Plus there is a field of managers that have helped do something. I have a report built so that it groups the managers, and I would like to count the # of times the manager helped anyone and enter it in the row the manager is grouped in. There are 2 Functions I have used. One counts a particular person. The second get an error about scope.
=Sum(IIF(Instr(Fields!Participating_Managers.Value, "Joe Smith")>0,1,0), "MOV") - Success
=Sum(IIF(Instr(Fields!Participating_Managers.Value, Fields!MOV_Lead.Value)>0,1,0), "MOV") - Count of first manager in scope. Would like to use the value of the current MOV_Lead for this group.
I should mention that I am using Reporting Services 3.0 and connecting to InfoPath forms report in SharePoint.