Quote:
Originally Posted by chaley
Use a for loop, as in
Code:
program:
res = 'Authors:';
for aut in "authors":
res = res & '<br>' & aut
rof;
res
If a for loop is given the lookup name of a column it uses the separator for that column. If you have the list in a variable then the following works:
Code:
program:
res = 'Authors:';
for aut in $authors separator '&':
res = res & '<br>' & aut
rof;
res
|
Now I see my error. I was doing this:
Code:
for aut in $authors:
I didn't know about the 'separator' bit.
Thanks for your help!