I'm working on ssrs report,i need to hide the header on last page for that I did visibility changes to the controls inside the header whatever I used.
I used this code
=IIF(Globals!PageNumber = Globals!TotalPages - 1 or Globals!PageNumber = Globals!TotalPages ,true,false)
it's working fine.
but after hiding the header controls the header white space showing on last page. i need to remove the white space occupying by header is there any way to remove that.