reporting services - Display a line between each line break in a SSRS textbox -


i have ssrs report has 1 large textbox on it. there simple way display gridlines between each line break?

example: http://imgur.com/o1e0vou

the solution can think of have 3 separate textboxes , use len() break text between 3. extremely tedious have 14 lines , span width of page.

thanks in advance!

you can split text data separate rows within dataset using tsql described in answer question: turning comma separated string individual rows

instead of comma, you're splitting on linefeed character can reference char(10).

note: may need strip out carriage return characters char(13), too.


Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -