I have a stored procedure that returns hierarchical data in a single long row, for example:
ContractID | ContractName | AssetID | AssetName | UnitID -----------+--------------+---------+-----------+------- 2 | Test | 7 | My asset | 24 5 | Another one | 51 | Vehicle | 89
I need to create an SSRS report that displays the data hierarchically, like this:
ContractID | ContractName 2 | Test AssetID | AssetName 7 | My asset UnitID 24 ContractID | ContractName 5 | Another one AssetID | AssetName 51 | Vehicle UnitID 89
Being an SSRS n00b I'm stumped - is this even possible, and if so, how? If not, what is the best/recommended way to achieve this?