As with any technical post, please your software version information.
This formula will insert a carriage return after every 80th character:
whileprintingrecords;
StringVar MyField;
numbervar X;
For x := 1 to len({table.field}) do(
if remainder(len({table.field}),80) = 0 then
MyField:=MyField+mid(table.field},x,1)+chr(13)
else
MyField:=MyField+mid(table.field},x,1)
);
MyField
Just use this formula instead of the field.
Untested, but the theory is sound and it should be close.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.