开发者

How to concatenate more fields in one textbox separated by "/" in Telerik reporting

开发者 https://www.devze.com 2023-04-04 10:58 出处:网络
I want to know how to concatenate more fields in one text box in Telerik reporting separate开发者_C百科d by \"/\" in expression of text box.When you set the Value of a text box, you can use expression

I want to know how to concatenate more fields in one text box in Telerik reporting separate开发者_C百科d by "/" in expression of text box.


When you set the Value of a text box, you can use expressions to concatenate multiple fields. You can do it with plain expressions such as:

=Fields.FirstField + '/' + Fields.SecondField

or you can use embedded expressions:

{Fields.FirstFIeld}/{Fields.SecondField}

You can see their documentation for more information about expressions and embedded expressions.

0

精彩评论

暂无评论...
验证码 换一张
取 消