Skip to content Skip to sidebar Skip to footer

Retrieving Cell Values From An Excel Spreadsheet Using Javascript

I am looking to retrieve cells from an excel spreadsheet using JavaScript, to use the values in an HTML page. Currently, I do not know how to use SheetJS, and I am not able to use

Solution 1:

function ReadData(cell, row) {
  var excel = new ActiveXObject("Excel.Application");
  var excel_file = excel.Workbooks.Open("C:\\RS_Data\\MyFile.xls");
  var excel_sheet = excel.Worksheets("Sheet1");
  var data = excel_sheet.Cells(cell, row).Value;
  document.getElementById('div1').innerText = data;
}

Post a Comment for "Retrieving Cell Values From An Excel Spreadsheet Using Javascript"