Concatenate table values into a string variable
I have a table of characters and want to produce a string variable of the concatenated values of each column to use as the argument of a function. Let's say this is my table of data:Column1 Column2Item1 Value1Item2 Value2Item3 Value3Item4 Value4Item5 Value5 . . . . . . The table will have 2 columns but any number of rows. The output I'm looking for is thi...