I have a report that is returning a one data field to a tablix control field. The data field contains multi-line information in the database. Example below.
In SQL Server,
"Dan Chief - Ceo - Indiana Office"
"Dan Chief - " & vbcrlf & "Ceo" & " - Indiana Office"
The vbcrlf's don't display in SQL Server but I have confirmed they are present by using instr() in SSRS.
I want the data to display like this. I can remove the hyphens and spaces.
Dan Chief
Ceo
Indiana Office
But in the SSRS report it displays all on one line. I have the autogrow check box selected/on and still nothing.
Any ideas are welcome.
Thanks.