我正在使用 SSRS 报告..我在 SSRS 报告上有一个文本框,句子太长。我可以在句子中添加换行符吗?
我的报告上有一个文本框,句子太长 我可以在句子中添加换行符吗?在 SSRS 报告中它如何可能。?
I have a text box on report with too long sentence
Can I add a break line in the sentence?How it can Possible in SSRS Report.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
澄清要求:
并将文本字符串替换为您的列名称。
第一部分找到第一个空格,并从开头到该字符获取文本,第二部分获取余数。如果您有多个空间,则需要进一步完善。
假设中断不在句子的开头,请使用
VBCRLF
将其拆分 - 即编辑 - 使用数据库变量:
当然,您可以混合使用数据库字段和静态文本(如果需要):
WIth requirements clarified:
ANd replace the text string with your column name.
The first part finds the first space and takes text from the start until that character, the second parts takes the remainder. If you have multiple spaces you will need to refine this further.
Assuming that the break isn't at the start of the sentence, break it up using
VBCRLF
- i.e.Edit - using database variables:
And of course you can use a mix of database fields and static text if required: