Hi,
I have to copy the data of one column and put it into another sheet by splitting it. Contents should be in different cells in the same row and has to be delimited by “"
I created a new data table with two columns.
For each row in original DT, I fetched the row item for that column.
Then used Add data row in new_DT and I was giving below value in ArrayRow
{split(val,"”)(0),split(val,““)(1)}
Why is this wrong? Its fetching split(val,””)(0) correctly but split(val,“_”)(1) going out of range.