Spreadsheet.ConcatenateVariables
This function Concatenates multiple variables' values into one variable, either a new variable or an existing one. TextOperationFlags can be combination of enum TextOperation values, either one set of flags or an array, 1 per variable.
SVB Example
Concatenating variables:
Option Base 1
Option Explicit
Sub Main
'concatenate variables 1 and 3 into a new variable, appended to the end of the dataset
'the string "Concat" is added to the beginning of each variable
'the concatenated variable values will be uppercased and separated by a ;
ActiveSpreadsheet.ConcatenateVariables(Array(1,3),ActiveSpreadsheet.NumberOfVariables,True,scToUpper,"Concat",";")
End Sub
Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.
