Hi Everyone,
In one of the PO Entry memo field, I enter text that looks like this:
Item 1 $10.00
Item 12365 $12.00
Item3652 $14.00
In the textbox, everything is perfectly aligned. However, when I print my SSRS Report, the information is not aligned properly. It looks like this:
Item 1 $10.00
Item12365 $12.00
Item3652 $14.00
In order to get this unperfect result, I had to add a formula in the SSRS field which I found on another forum:
=(replace(replace(First(Fields!TXTFIELD.Value),Chr(13),vbCrLf),chr(9),space(2)))
If I didn't put this formula, things would appear like this:
Item1 $10.00 Item12365 $12.00 Item3652 $14.00
Has anyone ever faced this problem and found a way to solve it? I'm wondering if the same thing happens with Crystal Reports.
Thanks
Francis
*This post is locked for comments
I have the same question (0)