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
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
To ensure line breaks are inserted correctly, use
=Replace(Fields!MyField.Value, vbLf, Environment.NewLine)
Set CanGrow = True.
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.