Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/oop/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Reporting services 具有多列数据显示的RDLC报告_Reporting Services_Rdlc - Fatal编程技术网

Reporting services 具有多列数据显示的RDLC报告

Reporting services 具有多列数据显示的RDLC报告,reporting-services,rdlc,Reporting Services,Rdlc,我有一份数据集如下的报告: ID SeqID Text DisplayName DisplayValue 1 x xyz xyz1 [] 1 x xyz xyz2 [x] 1 x xyz xyz3 [] 1 x xyz xyz4 [X] 1 x xyz Other 2 y abc abc1

我有一份数据集如下的报告:

ID SeqID Text DisplayName DisplayValue 

1   x    xyz   xyz1           []

1   x    xyz   xyz2           [x]

1   x    xyz   xyz3           []

1   x    xyz   xyz4           [X]

1   x    xyz   Other           

2   y    abc   abc1           []

2   y    abc   abc2           [X]

2   y    abc   abc3           []

2   y    abc   abc4           [X]

2   y    abc   Other           
上述数据集必须以以下格式显示在我的报告中:

1 xyz

xyz1 [] xyz2 [x] 

xyz3 [] xyz4 [x]

Other: 

2 abc

abc1 [] abc2 [x]

abc3 [] abc4 [x]

Other:
我正在尝试将上述格式的crystal报表转换为VS2008中的RDLC报表。基本上,我需要为每个唯一的文本列值显示一个动态列。
任何建议都会非常有用

每个
ID
值只会有这5行吗?不,每个ID值可能会有更多/更少的行可能会有帮助。。。