totalcells=r.cells.length
j=1
while j<=totalcells do
$arrayResult.push(r.cell(:index,j).text)
j=j+1
end
}
But it's really slow. Is there any better way to do the cell loop and
is there any better way to save the cell values to an array instead of
push? Thanks a lot.
totalcells=r.cells.length
j=1
while j<=totalcells do
$arrayResult.push(r.cell(:index,j).text)
j=j+1
end
}
But it's really slow. Is there any better way to do the cell loop and
is there any better way to save the cell values to an array instead of
push? Thanks a lot.