0

i am creating a Sql Server Reporting. I want pick one row from one dataset and all details regarding this row under it. Like Department name Dot-Net is on header and its employee details under it.Then Department PHP and all PHP employee below it. Here is the sample :-

Department

DotNet

       Employee Name                    Age

    Bharat                              25
    Arvind                              28
    Deepak                              30

SQL

     Employee Name                       AGE
        Aman                               30                                 
        Umesh                              25

It is just sample . I want to create same hierarchy for five tables, which linked each other. I don't know how to show data like it. I have used subreports and list also for reporting.

Thanks in advance!!

Bharat Bhushan
  • 115
  • 3
  • 16

1 Answers1

0

I would join the tables together in one dataset using a SQL query. Then I would define one Table with a Row Group on the Department.

http://msdn.microsoft.com/en-us/library/ms170712.aspx

Mike Honey
  • 14,523
  • 1
  • 24
  • 40