Paragraph in a SSRS Report

Hello!

My current report does this with the comments:

But I would like it to do this:
image

I am using Microsoft Report Builder.

I would very much appreciate help.

Thank you.

SSRS doesn’t format the line breaks properly from Epicor. You need to do something like this in your expression:

Replace("yourtexthere", Chr(13), VbCrLf)
3 Likes