In my SSRS report I want to add line breaks (carriage returns) to a text box based upon a field in my stored procedure. Sorta like the following:
SQL Server
ID Name Location CR
01 Smith Seattle 3
SSRS Text Box
"text statement : " + vbcrlf * [Fields!CR.Value] + "End Result"
Yields the following:
text statement
<1>
<2>
<3> End Result
Is this possible in SSRS 2010?
Brian