Avatar of kieriosity
kieriosity
Flag for United States of America asked on

Combine textlist text elements in Lotus Notes ReadViewEntries

Is it possible to combine a Lotus Notes readviewentries textlist text values into a single text element before rendering out the xml? I can combine this with JavaScript, but I would rather let Notes do the work if possible.

Turn this:
<entrydata columnnumber="1" name="File Name">
   <textlist>
      <text>Some Text Value 1</text>
      <text>Some Text Value 2</text>
   </textlist>
</entrydata>

Open in new window

Into this:
<entrydata columnnumber="1" name="File Name">
      <text>Some Text Value 1 Some Text Value 2</text>
</entrydata>

Open in new window

Lotus IBM

Avatar of undefined
Last Comment
kieriosity

8/22/2022 - Mon
Sjef Bosman

I suppose you'd have to change the formula in the view column. That seems to me the easiest way.
ASKER CERTIFIED SOLUTION
Sjef Bosman

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
kieriosity

ASKER
Implode did the trick. Many thanks.
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck