How to force multiple lines of text into a textbox in SQL Reporting Services
From time to time (generally in a header / footer), you'll want to force some linebreaking inside a textbox. For example, you may have a long column description that won't easily fit on a single horizontal place.
In order to get the behavior you want, use vbCRLF as part of an expression inside the text box.
For example:
= "First Line" & vbCRLF & "Second Line" & vbCRLF & "Third Line"