Domino Code Fragment

Code Name*
Concatenate multiple keyword fields for a view
Date*
04/28/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.3.17.128.129
Description*
Type*
Formula
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:
I created a field which was composed of about 15 keywords to choose from.
But this took up too much screen real estate so I wanted to s t r e t c h it out across the screen, so what I
did was create three keyword boxes and put 1/3 of the entries in each.

But in the view, I wanted all three to be show together, with commas separating them.

Field_1, Field_2, and Field_3 are each keyword fields. Use this formula in a view to concatenate all three into one view column.

More than 3 fields can be used here as well.

The formula......


REM "Required Field(s): Field_1, Field_2, Field_3 ";
@Explode(@Implode(Field_1 : Field_2 : Field_3); ", ")