views:

904

answers:

2

Hi,

How do I accomplish text wrapping of table fields in SSRS Report, and proper landscaping when rendering the report to PDF format

Thanks in advance Anna

A: 

To ensure line breaks are inserted correctly, use

=Replace(Fields!MyField.Value, vbLf, Environment.NewLine)

Set CanGrow = True.

Aidan Ryan
I t is not making any difference , says vbLf as unrecognized identifier
What is the entire content of your textbox?
Aidan Ryan
=Replace(Fields!pa_language.Value, vbLf, Environment.NewLine)
A: 

Its a dumb method but if you don't have too many fields try to use the space to push the text to go to the next line.

Kelvin