Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.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 SSRS组标题显示在除最后一页以外的所有页面上_Reporting Services_Ssrs 2008_Ssrs Grouping - Fatal编程技术网

Reporting services SSRS组标题显示在除最后一页以外的所有页面上

Reporting services SSRS组标题显示在除最后一页以外的所有页面上,reporting-services,ssrs-2008,ssrs-grouping,Reporting Services,Ssrs 2008,Ssrs Grouping,我在每个页面上显示组标题时遇到了一些麻烦,但实现这一点的步骤在这里和其他在线站点上都有详细的文档记录,但我有一个新问题 除最后一页外,我在每一页上都有一个组标题 我的报告是这样写的- <group on IDs> <group on description> <group on desc_num> <static> <static> <static> <group o

我在每个页面上显示组标题时遇到了一些麻烦,但实现这一点的步骤在这里和其他在线站点上都有详细的文档记录,但我有一个新问题

除最后一页外,我在每一页上都有一个组标题

我的报告是这样写的-

<group on IDs>
  <group on description>
    <group on desc_num>
      <static>
      <static>
      <static>
  <group on other>
    <static> -- this is my header causing trouble
    <group on other_num>
      <static>
在我的报告中,我使用group by description将查询的第一部分中的所有内容组合在一起,然后根据desc_num进行分组,这样我就可以保持在一起,从而使静态行保持在一起。我对其他人也这样做

每个ID可以有许多描述,每个描述包含多组详细信息。它们还可以有许多包含多组详细信息的“其他”。描述和其他组可以包含数页的数据

对于另一个组的标题,我将KeepTogether、KeepWithGroup和RepeatOnNewPage的高级属性设置为True、After、True,这允许它显示在其他组的每个页面上

这是完美的,除了另一个标题不会出现在最后一页上。对于一个特定id,有3.5页的“描述”组,紧接着是6页的“其他”组(无分页符)。“其他”一词恰当地显示在第4页下半页另一组的开头和随后各页的顶部,第10页除外,该页仅包含半页

当页面较少时,此标题具有类似的结果,它始终不会显示在“其他”组成员的最后一整页上

如果有人对此有任何想法或建议,我将不胜感激

Select 'Description', ROWNUM desc_num, x,y,z, null null etc...
UNION
Select null null null null etc... 'Other',  ROWNUM other_num, a, b, c