Xml - question getting multiple value for textlist field

Within the Lotus Advisor site, I have found an article that Generates PDF’sfrom Notes Data. There were two articles about the methods

in doing this. Below are the links to the articles. In order to read them

in their entirety, you’ll need a subscription to Lotus Advisor, but these

are excellent ideas concerning the creation of PDF’s from Notes data. An

xml file is generated and Formatting Objects Processor is used

which creates a pdf file from the xml file.

Now concerning the xml question that I have… since I have not worked

with xml before and trying to teach myself this stuff. From the bit

of info stated above, I am creating a template to be used in generating the

xml file. It states that in creating this template we can use @-language

between the $-signs. Below is part of the example that I am writing.

Everything works fine in creating my XML file with the exception of the

field value of “Column1”. That field is a text list and I usually work in

LotusScript, so I was wondering if anyone could help me out in formula

language in order to get all of the values in the text list displayed in my

XML file.

Sorry this is so long, but I certainly appreciate the comments.

Thank you,

Jean

Subject: xml - question getting multiple value for textlist field

Getting a value from an array in formula-language is done like:

myarray[index]

The index starts with 1.you can even have a loop in formula-language like:

@For(initialize ; condition ; increment ; statement ; … )