I am having a little issue with this script:
Any ideas?
Code:
// loop thru the rows based on the selection of the user
for (var i = XLSRowFrom; i <= XLSRowTo; i++)
{
XLSArray[i] = oXLS.ActiveSheet.Cells(i -1 ,1).value
alert(XLSArray); // -----------------------> results (,,,8,9,10) should be (8,9,10)
}
Comment