Telerik Reporting - Dynamic

244 Views Asked by At

In telerik reporting, is this possible to bind my data dynamically from database with space and special characters in telerik table column name? is there any alternate solution?

1

There are 1 best solutions below

0
On

Telerik Reporting supports referencing the fields whose names contain spaces and special chars like that (sample expression):

=Fields.[My field'name]

You can also reference fields dynamically passing the name of the field using the Fields function (for example, pass the name using a report parameter):

=Fields(Parameters.FieldName.Value)