I have a field with a very long value and I have to add a line break at some point on SSRS. I inserted a symbol at that point using T-SQL and then tried to replace that symbol with vbcrlf, char(10), char(13) through SSRS using the Replace function like this
=iif(Parameters!Comments.Value = “Yes”, Replace(Fields!Addedcomments.Value, “|”, vbcrlf), Nothing)
But nothing happens.. it even stops showing that field completely.. I’m confused.. please help..
Try using System.Environment.NewLine