本文介绍了ssrs报告中不需要的分页符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我在SSRS报告中的两个文本框之间遇到了不需要的分页问题。第一个testbox包含子标题(左对齐),摘要。第二个文本框包含注释。最大限制为10000个字符。

当我googeld时,我发现了以下计算方法。我纠正了这些值以满足条件。我还是面临着问题。请建议我解决这个问题。在此先感谢。



注意:评论文本框中的文字长度为5200字符。



Page.Height > = Page.TopMargin

+ ReportHeader.Height(无标题)

+ ReportBody.Height

+ ReportFooter.Height(无页脚)

+ Page.BottomMargin

我的页面值24> = 1 + 20.57513 + 1



Page.Width > = Page.LeftMargin + ReportBody.Width + Page.RightMargin

我的页面值15> = 0.5 + 12.76427 + 0.5



我将属性,ConsumeContainerWhitespace值设置为True

Hi,
I'm facing problem with unwanted page breaks between two text boxes in my SSRS report. first testbox contains sub header(left-aligned), "Summary". second text box contains comments. maximum limit is 10000 characters.
When I googeld, I found the below calcualtions to consider. I corrected the values to satisfy the conditions. Still I'm facing problem. Please suggest me to fix this issue. Thanks in advance.

Note: text length in comments textbox is 5200 charcters.

Page.Height >= Page.TopMargin
+ ReportHeader.Height (no header)
+ ReportBody.Height
+ ReportFooter.Height (no footer)
+ Page.BottomMargin
My page values 24>=1 + 20.57513 + 1

Page.Width >= Page.LeftMargin + ReportBody.Width + Page.RightMargin
My page values 15 >= 0.5 + 12.76427 + 0.5

I set property, "ConsumeContainerWhitespace" value to True

推荐答案


这篇关于ssrs报告中不需要的分页符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 08:45
查看更多