Hi, in a report, I need to display, in one text box the first name in bold, a space and the last name (not in bold). first name and last name come from a data source.
I use a HTML Text Box and in the Expression Editor, I type :
=Fields.FirstName + " " + Fields.LastName
And I Put Fields.FirstName in bold. The result is :
[=<strong>Field.FirstName</strong> + " " + Fields.LastName]
But when I preview the report, I have the error :
An error has occured while processing Table 'listEleves':
htmlTextBox1.Value expression [=<strong>Fields.FirstName</strong> + " " + Fields.LastName] is not valid:
Syntax error: Missing operand before '<' operator.
What is wrong ?