Hi i have 5 string variable with a value i wanted to insert in the same column,
i would like to refrain from using for each if possible
is there a way to do it ? ,
thank you
i have 5 variable with a value ,
and i wanted to insert this 5 value into an existing data table on the same column
so it will be like column B
Existing value
Existing Value
New Value from variable 1
New Value from variable 2
New Value from variable 3
New Value from variable 4
New Value from variable 5
and i wanted to insert this 5 value into an existing data table on the same column
so it will be like column B
Existing value
Existing Value
New Value from variable 1
New Value from variable 2
New Value from variable 3
New Value from variable 4
New Value from variable 5
You can use add data column activity if it’s a new column.
else
Add the 5 variables into a datatable
Use write range or append range(based on your criteria)
“Range” property like “A5:A10”(if you use write range)