Mahmoud Basuony
Mahmoud Basuony

Reputation: 11

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

I want to know how to concatenate more fields in one text box in Telerik reporting separated by "/" in expression of text box.

Upvotes: 1

Views: 5913

Answers (1)

Stephen McDaniel
Stephen McDaniel

Reputation: 2968

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.

Upvotes: 1

Related Questions