Disclaimer : I am SSRS n00b, so there are not too many rotten tomatoes :)
I have a hierarchy of employees and managers with whom I created Reporting Services using the Recursive Parent property . Here's a rough idea:
-Jim Bob Ray -Steve Ricky Bobby Terry
For example, I need people counting under Steve, but when I call Count(Fields!EmployeeID.Value, "Details", Recursive) , I can get 3 instead of 2 . Of course, I can simply subtract 1 in the case of an account, but that will not work when I need the amount. So the real question is: how to get a recursive aggregate that excludes the parent?
Additional Information: I have only one group, which is the default group. It is configured just like this example , so I am grouping by EmployeeID and I have a recursive parent set for ManagerID.
Update
A few workarounds I tried to no avail:
- Adding a line inside a group gives the same results because it is still in the same area as another line of details.
- Adding a subtotal - does not work because it is outside the group of parts, so it displays once rather than once for each manager.
Any ideas?
source share