I made a report which contain a table that contain DatabaseView of 3 databases tables like that:
table name
datbase1 row1
database2 row1
database3 row1
the problem is database 2 have more than one row and the report repeat all the table instead of push the database 2 rows in the middle.
I want to show the table like this:
table name
datbase1 row1
database2 row1
row2
row3 ..
database3 row1
Using VS2010 , C# , Windows Form.
Any help? Thanks!
Seems like a case of
Groupingand not ofSorting.To accomplish your needs you have to creare a Row Group based on your
tablevalue: this will not replicate the value of table.The expected output will be something like this
MSDN Library’s How to Grouping Data in Report