Forum Discussion
nmrao
9 years agoCommunity Hero
With the above script, data[0] (here 0 represents the index of the column)contains CustRefID of each line.
Not sure what exactly the further.
Is that you need to ignore the last line (Rows=1) which is not actual data?
Then you change it from:
if (index) {
to:
if (index && (lines.size() != index+1)) {
Not sure what exactly the further.
Is that you need to ignore the last line (Rows=1) which is not actual data?
Then you change it from:
if (index) {
to:
if (index && (lines.size() != index+1)) {