docs.sheetjs.com/docz/docs/03-demos/32-extensions/03-excelapi.md
2025-01-05 21:51:20 -05:00

9.2 KiB

title pagination_prev pagination_next sidebar_custom_props
Excel JavaScript API demos/cloud/index demos/bigdata/index
summary
Add new data import functionality to Excel by integrating SheetJS in custom JavaScript user-defined functions and extensions.

import current from '/version.js'; import CodeBlock from '@theme/CodeBlock';

:::info pass

This demo focuses on the Excel JavaScript API.

For reading and writing Excel spreadsheets, other demos cover a wide variety of use cases and deployments.

:::

SheetJS is a JavaScript library for reading and writing data from spreadsheets.

Office 2016 introduced a JavaScript API for interacting with the application. It offers solutions for custom functions as well as task panes.

Excel currently does not provide support for working with Apple Numbers files and some legacy file formats. SheetJS fills the gap.

In the "Complete Demo", we'll create a new custom function SHEETJS.EXTERN() which tries to fetch an external spreadsheet and insert the data into the worksheet.

SHEETJS.EXTERN output

:::note Tested Deployments

This demo was tested in the following deployments:

OS and Version Architecture Excel Date
macOS 14.5 darwin-arm 16.81 2024-12-22
Windows 11 win11-x64 365 (2407) 2024-08-11

:::

:::caution Excel Bugs

There was a binary data bug affecting fetch and Excel. It was resolved in version 2303. It is strongly encouraged to upgrade to the latest version of Excel 365 before running the demo.

:::

:::danger Telemetry

The Office Add-in CLI collects telemetry by default. It can be disabled:

npx office-addin-usage-data off

The setting can be verified by running:

npx office-addin-usage-data list

:::

Integration Details

The SheetJS NodeJS module can be imported from scripts in an Excel Custom Functions project.

The sheet_to_json helper function can generate arrays of arrays of values based on the worksheet data. Excel custom functions transparently treat arrays of arrays as Dynamic Arrays.

This example fetches a file using the fetch API, parses the binary data using the SheetJS read1 method and returns data from the first worksheet.

flowchart LR
  url[(Remote\nFile)]
  ab[(File\nBytes)]
  subgraph SheetJS Structures
    wb(((SheetJS\nWorkbook)))
    ws((SheetJS\nWorksheet))
  end
  aoo[[Array of\nObjects]]
  xl>Excel\nWorksheet]
  url --> |fetch\narrayBuffer| ab
  ab --> |read\n\n| wb
  wb --> |wb.Sheets\nselect sheet| ws
  ws --> |sheet_to_json\n\n| aoo
  aoo --> |return\nExcel| xl
  linkStyle 1,2,3 color:blue,stroke:blue;
const XLSX = require("xlsx");

/**
 * Download file and write data
 * @customfunction
 * @param {string} url URL to fetch and parse
 * @returns {any[][]} Worksheet data
 */
export async function extern(url) {
  try {
    /* Fetch Data */
    const res = await fetch(url);

    /* Get Data */
    const ab = await res.arrayBuffer();

    /* Parse Data */
    const wb = XLSX.read(ab);

    /* Translate Data */
    const ws = wb.Sheets[wb.SheetNames[0]]; // get first worksheet
    const aoa = XLSX.utils.sheet_to_json(ws, { header: 1 }); // array of arrays

    /* Return Data */
    return aoa;
  } catch(e) { return [[e.message || e]]; } // pass error back to Excel
}

Complete Demo

  1. Clear the functions cache. For the tested version of Excel for Windows:
  • Open File Explorer
  • Select the address bar and enter %LOCALAPPDATA%\Microsoft\Office\16.0\Wef
  • Delete the CustomFunctions folder (if it exists) and empty Recycle Bin.

:::caution pass

This will delete all custom functions associated with the user account!

To preserve the custom functions on the user account, rename the existing folder to CustomFunctionsBackup before testing and rename back to CustomFunctions after testing is finished.

:::

  1. Install NodeJS LTS.

  2. Launch a new PowerShell (Windows) or Terminal (MacOS) window.

  3. Disable telemetry:

npx office-addin-usage-data off
  1. Install dependencies:
npm i -g yo bower generator-office

Creating a new Add-in

  1. Run the generator:
npx yo office

The generator will ask a few questions:

  • "Choose a project type": "Excel Custom Functions using a Shared Runtime"

  • "Choose a script type": "JavaScript",

  • "What do you want to name your add-in?": "SheetJSImport"

The generator will create the project and install dependencies.

  1. Start the development process:
cd SheetJSImport
npm run build
npm start

If prompted to Allow localhost loopback for Microsoft Edge WebView, type N and press Enter.

If prompted to install "Developer CA for Microsoft Office Add-ins" certificate, select "Yes"

If Windows Firewall prompts to allow Node.js on private networks, select "Yes" A new terminal window running NodeJS will be created. Keep the window open.

A new Excel window with the loaded add-in will launch.

:::caution pass

In some tests, the task pane showed an error:

Script error.

Webview2 should be installed manually.

:::

  1. In manifest.xml , search for Functions.Namespace . There will be an XML element with name bt:String. Change the DefaultValue attribute to SHEETJS:
      <bt:ShortStrings>
// highlight-next-line
        <bt:String id="Functions.Namespace" DefaultValue="SHEETJS"/>
        <bt:String id="GetStarted.Title" DefaultValue="Get started with your sample add-in!" />
  1. Close the Excel window and the terminal window. Do not save the XLSX file.

  2. In the terminal window, start the development process again:

npm run stop
npm start

Integrating the SheetJS Library

  1. Install the SheetJS library in the project

{\ npm i --save https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz}

  1. Replace src\functions\functions.js with the following:
var XLSX = require("xlsx");

/**
 * Print SheetJS Library Version
 * @customfunction
 * @returns {string[][]} The SheetJS Library Version.
 */
export function version() {
  return [[XLSX.version]];
}
  1. Close the terminal window and the Excel window. Do not save the Excel file.

  2. In a new terminal window, start the development process again:

npm run stop
npm start
  1. In the new Excel window, enter the formula =SHEETJS.VERSION() in cell E1. You should see something similar to the following screenshot:

SHEETJS.VERSION output

This indicates that the SheetJS library has been loaded.

:::info pass

In some MacOS tests, the add-in installed CONTOSO.VERSION. To force a refresh of the manifest:

  1. Stop the development process:
npm run stop
  1. Close the Excel app by right-clicking Excel in the Dock and selecting "Quit".

  2. Restart the development process:

npm start
  1. Activate the Task Pane for the addin (click "Show Task Pane" in the ribbon).

  2. Hover near the top-right corner of the addin and click the i icon.

  3. Click "Clear Web Cache" and wait a few moments.

:::

Fetching Files from the Internet

  1. Add the following code snippet to src\functions\functions.js and save:
/**
 * Download file and write data
 * @customfunction
 * @param {string} url URL to fetch and parse
 * @returns {any[][]} Worksheet data
 */
export async function extern(url) {
  try {
    /* Fetch Data */
    const res = await fetch(url);

    /* Get Data */
    const ab = await res.arrayBuffer();

    /* Parse Data */
    var wb = XLSX.read(ab);

    /* get and return data */
    var ws = wb.Sheets[wb.SheetNames[0]]; // get first worksheet
    var aoa = XLSX.utils.sheet_to_json(ws, { header: 1 }); // get data as array of arrays
    return aoa;
  } catch(e) { return [[e.message || e]]; } // pass error back to Excel
}
  1. Close the terminal window and the Excel window (do not save the Excel file).

  2. In a new terminal window, start the development process again:

npm run stop
npm start
  1. Enter the text https://docs.sheetjs.com/pres.numbers in cell D1. Enter the formula =SHEETJS.EXTERN(D1) in cell D2 and press Enter.

Excel should pull in the data and generate a dynamic array. The worksheet should match the screenshot at the top of this page.

:::tip pass

SheetJS Pro offers additional features that can be used in Excel Custom Functions and Add-ins.

:::