Greetings all,I've a table that contains both parent & children via a recursive group. Here is the querySELECT T1.EmployeeID, T1.Name AS EmpName, T1.ParentID, T2.Name AS ParentNameFROM Employee AS T1 LEFT OUTER JOIN Employee AS T2ON T2.EmployeeID = T1.ParentID
I placed a group on the table of the ssrs report, the group is on EmployeeID and the parent group is on ParentID.And what i'm trying to do is the following :Parent 1 Sub-parent 1 Child 1 Child 2 Total Sub-parent 1 (group footer) Sub-parent2 Child 1 Child 2 Total Sub-parent 2 (group footer)Total Parent 1 (group footer)
What happens is that every account is considered a group, and the total is displayed right after the name (of either the child or the parent). What should i do in the group expression to make the group on each parent along with its children, to have one footer at the end of it?Thanks in advance.