Trying to Get Rid of White Space in SSRS Report

寵の児 提交于 2019-12-06 05:26:56
rherling

The answer to your question can be found here.

http://www.sqldev.org/sql-server-reporting-services/hidden-rows-still-displayed-9660.shtml

You are likely entering your expression in the text visibility properties instead of the row group visibility. Using the row group will remove the entire row, text and white space.

This might help: http://blog.datainspirations.com/2011/03/18/the-case-of-the-extra-page/

First thing to try is the ConsumeContainerWhitespace property I mention at the end.

To avoid the whitespaces you can use the builtin trim function and it will trim all the whitespaces. For more details of SSRS function you can refer here

I recently had this issue and what I found was that if I set the visibility of a rectangle to an expression and simply set the expression to =true, the rectangle shrank appropriately. I also had the report set to ConsumeContainerWhitespace although I'm not sure this is required in every case.

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