Home > Mobile >  Set hyperlink in excel sheet using Node js
Set hyperlink in excel sheet using Node js

Time:10-12

I have converted JSON data to excel in node js using the json2xls package. The Excel file was prepared properly but I want to add a hyperlink for some cells in the sheet.

So it is possible using json2xls or any package in node js?

CodePudding user response:

I have tried myself and it looks not possible using that library. You can either make a pull request to it to support FORMULA type or parse JSON yourself and use a node.js library to create XLSX files. (i.e. : https://www.npmjs.com/package/xlsx)

  • Related