Is there a way to reduce the height of the page footer on an SSRS (SQL Server Reporting Services) Report less than .88597in?
I tried to set the height
to .5
in the properties panel and right-clicking the footer, selecting footer properties then putting .5
in the height box. Neither work.
The report footer is not restricted to it's height. You either have a textbox/image/rectangle with a larger height, or a textbox within is causing a line break.
Try setting the textboxes properties within the footer to CanGrow: false
and CanShrink:true
to make sure these don't increase the height.
Also check that none of your objects in the footer have a dynamic location/position or size.