About 2,690,000 results
Open links in new tab
  1. How to parse Excel (XLS) file in Javascript/HTML5 - Stack Overflow

    I am able to read Excel file via FileReader but it outputs text as well as weird characters with it. I need to read xls file row-wise, read data in every column and convert it to JSON. How to rea...

  2. How to export html table to excel using javascript

    Jul 4, 2011 · How to export html table to excel using javascript Asked 14 years, 4 months ago Modified 2 years, 7 months ago Viewed 208k times

  3. Converting Excel Date Serial Number to Date using Javascript

    I have the following javascript code that convert date (string) to the Date Serial Number used in Microsoft Excel: function JSDateToExcelDate(inDate) { var returnDateTime = 25569.0 + ((inDate.

  4. For Each Cell Loop - Excel JavaScript API - Stack Overflow

    Jan 26, 2022 · In the following VBA code, I debug.print each cell value. Using the data in the picture, my answer appears like this. Sub loopAndDebugPrintEachCell() Dim cl As Object With Sheets("Sheet1") …

  5. vba - Excel Macros with JavaScript - Stack Overflow

    Nov 24, 2013 · I wish to manipulate Excel spreadsheets using macros in JavaScript rather than the default VBA. I can execute JavaScript code using the following VBA code 'JavaScript to execute Dim …

  6. How to save .xlsx data to file as a blob - Stack Overflow

    55 I have a similar question to this question (Javascript: Exporting large text/csv file crashes Google Chrome): I am trying to save the data created by excelbuilder.js 's EB.createFile() function. If I put …

  7. javascript - Reading Excel file using node.js - Stack Overflow

    119 There are a few different libraries doing parsing of Excel files (.xlsx). I will list two projects I find interesting and worth looking into. Node-xlsx Excel parser and builder. It's kind of a wrapper for a …

  8. javascript - Iterate over a Range fast in Excelscript for web - Stack ...

    Mar 14, 2022 · javascript excel scripting office365 office-scripts asked Mar 14, 2022 at 18:05 Wolfeius 333 1 2 16

  9. How can I export Excel files using JavaScript? - Stack Overflow

    If you can generate the Excel file on the server, that is probably the best way. With Excel you can add formatting and get the output to look better. Several Excel options have already been mentioned. If …

  10. easiest way to read data from excel spreadsheet with javascript?

    My Javascript is passed a 3 character string that should be an airline code. When that happens I need to find the code on the spreadsheet and return the Airport Name and Location.