Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSRS how to add in New line

I am creating a string from stored procedure like this Name1 , Name2 , Name 3.... etc(This string is in one column). I want to display these name in a new line in my SSRS report like

Name1
Name2
Name3

I tried changing the string to

Name1 VbCrlf 
Name2 VbCrlf  
Name 3 

Doesn't seems to be working.

Please help me to resolve this issue.

like image 915
Thinna Avatar asked Aug 19 '13 04:08

Thinna


1 Answers

Use an expression like:

=Replace(Field!Names.Value, ",", VbCrLf)
like image 102
Chris Latta Avatar answered Oct 26 '22 20:10

Chris Latta