About 57 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. Como importar un excel en javascript para usar sus datos?

    May 3, 2022 · soy nuevo en programación con javascript y estoy programando una web donde me salgan preguntas ( en formato a,b,c,d (tipo test)) en orden aleatorio , las preguntas las tengo en un …

  3. 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") …

  4. Unable to Get Selected Range Values when Column Selected - Excel …

    Jun 30, 2023 · I'm wondering if I found another bug using "entire column ranges". I'm looking to capture the selected range values and generally, when I select a range, I just select the column header s...

  5. Best way to loop through all worksheets in the Excel Javascript API?

    May 11, 2018 · I want to loop through each of the worksheets in a workbook, and perform an action on each one, (for example, running calculate()). For performance reasons, I want to do this all in one …

  6. javascript - Is there any way to have event handling with ExcelScript ...

    Mar 11, 2022 · The Excel Javascript API docs has the worksheet.onSingleClicked() or onChanged(), but I cannot find anything similar on the ExcelScript docs, which I understand is the only API that can run …

  7. How to add a complex formula in exceljs - JavaScript

    Aug 17, 2023 · I'm currently working on a project that requires to export data in multiple xlsx sheets. In one of them, I need to add formula in cells that verified some conditions before adding some data …

  8. 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 …

  9. javascript - Editing Excel with ExcelJS - Stack Overflow

    May 8, 2022 · How do you edit a specific cell in an excel file using JavaScript? I am trying to do it using ExcelJS but having a hard time in writing to my excel file.

  10. javascript - Resolve a range specification with worksheet name in Excel ...

    May 22, 2025 · The documentation page Get a range using the Excel JavaScript API only shows examples using Excel.Worksheet.getRange(), requiring one to get the worksheet (by name) first. The …