SSRS 2008 & 2008列标题
您可能知道,SSRS2008 中列标题的显示存在一种特殊情况……即,您需要深入研究才能让它们在每个页面上重复。
我见过的所有示例都依赖于某种分组正在进行。我没有在报告中使用组。知道如何让 tablix 的标题出现在每个新页面上。
非常感谢。
As you may be aware there is a peculiar situation with the display of column headers in SSRS2008... i.e. you need to dig around a bit to get them to repeat on every page.
All of the examples I've seen rely on some kind of grouping going on. I'm not using groups in my report. Any idea how I can get the headers of a tablix to appear on each new page.
Many thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议在数据集中包含一个虚拟字段,并在整个报告中设置为恒定值。在虚拟字段的顶层进行分组,将 tablix 列标题移动到组标题中,然后按照 MSDN 博客中的其余步骤进行操作。
I suggest including a dummy field in the dataset, set to a constant value throughout the report. Group at the top level on the dummy field, move the tablix column headings into the group header and follow the rest of the steps in the MSDN blog.
在组属性中选择高级模式
从行组中选择静态组
在静态组属性中 ,
将 RepeatOnNewPage 设置为 True
另外,
通过设置此项,将 KeepWithGroup 作为 After,
您可以查看每个页面中的行标题。
谢谢。
select Advance Mode in Group Properties
Select Static Group from Row Group
in Static Group Properties,
set RepeatOnNewPage as True
and additionally KeepWithGroup as After
by setting this,
you can view row header in each and every pages.
thanks.