我正在使用 SSRS 报告..我在 SSRS 报告上有一个文本框,句子太长。我可以在句子中添加换行符吗?

发布于 2024-12-10 11:28:12 字数 55 浏览 0 评论 0原文

我的报告上有一个文本框,句子太长 我可以在句子中添加换行符吗?在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

童话 2024-12-17 11:28:12

澄清要求:

=LEFT("Leo's OfficeName",INSTR("Leo's OfficeName"," ") - 1) & VBCRLF & MID("Leo's OfficeName",INSTR("Leo's OfficeName"," ") + 1,LEN("Leo's OfficeName"))

并将文本字符串替换为您的列名称。
第一部分找到第一个空格,并从开头到该字符获取文本,第二部分获取余数。如果您有多个空间,则需要进一步完善。


假设中断不在句子的开头,请使用 VBCRLF 将其拆分 - 即

="Text on first line goes here" & VBCRLF & "text on second line here"

编辑 - 使用数据库变量:

=Fields!Variable.Value & VBCRLF & Fields!Vairable2.Value

当然,您可以混合使用数据库字段和静态文本(如果需要):

= Fields!Variable.Value & VBCRLF & "Text on Second Line"

WIth requirements clarified:

=LEFT("Leo's OfficeName",INSTR("Leo's OfficeName"," ") - 1) & VBCRLF & MID("Leo's OfficeName",INSTR("Leo's OfficeName"," ") + 1,LEN("Leo's OfficeName"))

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.

="Text on first line goes here" & VBCRLF & "text on second line here"

Edit - using database variables:

=Fields!Variable.Value & VBCRLF & Fields!Vairable2.Value

And of course you can use a mix of database fields and static text if required:

= Fields!Variable.Value & VBCRLF & "Text on Second Line"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文