Join

What this join is doing :

join ({?Plant}, " , ")


Developer_Designer (BOB member since 2009-08-09)

I believe the join() function takes an array and decomposes it into a string, using the separator character provided. So assume you have an array with 3 values in it, the colors Red and Yellow and Blue. After the join() function is applied, and with the “,” as the parameter, you have a string that looks like this:

Red,Yellow,Blue

Dave Rathbun :us: (BOB member since 2002-06-06)