SSRS show value only on last page in body of report

为君一笑 提交于 2019-11-29 10:21:19

Can you not just create a group that includes a group footer. Then in the group properties make sure that the "Repeat Group Footer" isn't checked and Sum() the total in the group footer?

I simply resolved it using ...

=iif(Globals!PageNumber=Globals!TotalPages,false,true)

Put that in the Expression editor for the HIDDEN property of all the objects/controls you have in your footer.

It will only show you the footer once the last page is processed.

I hope that's what you meant/want? Thanks

try something like this

=iif(Globals!PageNumber=Globals!TotalPages,data,nothing)
Sohail

Just add a textbox below the table. The textbox will be visible after the last page of the table.

if you want it in the body, if the rest of the report's layout shifts dynamically, it won't render in the same spot. otherwise it should render in the same spot and you can just put it at the bottom of the last page.

remember, a page is 8 1/2 x 11. if you have 1 inch margins, the first page ends at 6.5 inches.

Michelle

Hidden:

=iif(Globals!PageNumber=Globals!TotalPages,data,nothing)

use the above one on the hidden property of the footer.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!