SSRS show value only on last page in body of report

前端 未结 6 1431
梦毁少年i
梦毁少年i 2020-12-19 06:02

I\'m attempting to show a sum in a table footer on a report. It will be in the body of the report and can\'t be in the header or footer. The table footer repeats on each p

相关标签:
6条回答
  • 2020-12-19 06:08

    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?

    0 讨论(0)
  • 2020-12-19 06:14

    Hidden:

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

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

    0 讨论(0)
  • 2020-12-19 06:18

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

    0 讨论(0)
  • 2020-12-19 06:25

    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

    0 讨论(0)
  • 2020-12-19 06:28

    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.

    0 讨论(0)
  • 2020-12-19 06:35

    try something like this

    =iif(Globals!PageNumber=Globals!TotalPages,data,nothing)
    
    0 讨论(0)
提交回复
热议问题