Having 3 columns in excel with multiple rows say for ex.
col 1 col2 col3
data base testing
product base testing
now i would like to create one column say for col4 which should values like below
col 1 col2 col3 col4
data base testing col1
-------
data
col2
-------
base
col3
------
testing
(note: in the same cell)
the entire column 4(must have col1, col2, col3 values along with header) with same format i want to enter into webpage.
First use read range and it will give you output as DataTable
Then iterate through using for each row
assign index = DataTable.rows.indexOf(row)+2
assign col4 = row(“col1”).toString + row(“col2”).toString + row(“col3”).toString
take Write cell
Thank you so much. I was able to concatenate the string in one column. But i required along with the header also one by one in the same cell
col1
data
col2
base
col3
testing (in the col4)
will it be possible