Shrinking the empty footer space in SSRS

Hi,

I control the visibility of the footer of my SSRS report using the following statement:

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

which works just fine. But, for the pages where footer is set hidden, a blank space appears in the output.

I want to suppress that space and utilize it.

Does anyone know how to achieve that?

This is by design. If you need such a behaviour, you’ll have to do it outside the footer.

Thanks Martin. I guess I have to live with this fact until it is taken care of…