I am bringing data over from Oracle i开发者_开发技巧nto SSRS. One dataset pulls in a a string of names and initials divided by a semi colon. :
EX: Ratliff, J D;Schlue, R S
I would like to insert a line break after each semicolon and bold the very last line to display as follows:
Ratliff, J D;
Schlue, R S
Any ideas on how to accomplish this?
You could wrap that name field in an expression that simply replaces the ";" character with a line break character. That should give you the desired behavior.
Gerry Lee, SQL Server Reporting Services
精彩评论