Does anyone know how to preserve carriage returns in SSRS 2005? I have tried
using chr() but nothing changes. Someone suggested creating a function to
read in the values then re-rendering into HTML to see if it will preserve the
formatting.
Does anyone have any suggestions to resolve this issue?
Sometimes the order can be important, and you need to use both
I had the same issue and it was solved by replacing CHR(10) with CHR
(13) + CHR(10)
replace(text,char(10),char(13)+char(10))
=REPLACE(Fields!YourFieldHere.Value,CHR(10), vbcrlf)