Adding new line to remarks field in series label
Posted: Wed Sep 08, 2010 3:04 am
Hello,
I want to add various lines to the remarks field of a series label, is this possible?
I try the following that does not work (all added in one line) by using the Carriage Return ASCII code 13:
Thanks for your help.
Javier
I want to add various lines to the remarks field of a series label, is this possible?
I try the following that does not work (all added in one line) by using the Carriage Return ASCII code 13:
Code: Select all
%rmks=""
for !c=14 to 18
%rmks=%rmks+@lower(tablab(1,!c))+@chr(13)
next !c
{%ser}.label(r) {%rmks}
Javier