i am trying to get total number of rows in my excel sheet with javascript . here is my code
var Excel;
Excel = new ActiveXObject("Excel.Application");
Excel.Visible = false;
a= Excel.Workbooks.open("C:/work/ind.xls").ActiveSheet.Cells(1,1).value;
alert(a);
this show the value at 1st index , but i was wondering if there is any option of getting the total rows of this active sheet .
Thanks