Reputation: 499
I am getting improper affect of my SSRS expression
for line break. I've done quite alot of research about the syntax, I have tried using Fields!......+ VbCrLf + Fields!...,
or
Fields!...+System.Environment.NewLine+Fields!..."
OR tried with double Carriage return ( ...+VbCrLf +VbCrLf +...)
In my case, either one of these works in first two lines only. And I can't get the effect in my 3rd and 4th lines. I also make the textbox
can-grow properties to True
. But still not okay. Someone please kindly help me resolve this issue. Thank you...
Upvotes: 1
Views: 2902
Reputation: 3028
You can include multiple fields in a single textbox by simply adding more placeholders to a single text box.
Fore example you can add you original expression for Fields!P_remark_Cname.Value
. Then enter as many carriage returns as required, then right click the text box and select "Create Placeholder". Set the value of the window that pops up to =Fields!P_remark_CPost.Value
and then OK out of the windows.
You can repeat this process for as many variables as you like, resulting in a design that looks like this
Note you can also format each of these expressions individually, hence some appearing bold, or underlined as required.
Hopefully this will be helpful. Please let me know if you require further assistance with this.
Upvotes: 2