Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
61 views

In my ReactJS application, I have a billing screen where users can create and preview bills. On the preview screen, there's an option to export the bill as an Excel file. I want the exported Excel ...
Nitesh Gairola's user avatar
3 votes
0 answers
90 views

I'm building a desktop app using ElectronJS, which reads content of pre-existing XLSX files. I first created the app as a CommonJS module. Here's the minimal reproducible example code: const path = ...
Aristocrates's user avatar
0 votes
1 answer
638 views

I currently have a large array of data that I need to write to a new Excel file, however every time that I close the stream to the file, the process fails with the error FATAL ERROR: Reached heap ...
RankinJ's user avatar
  • 131
1 vote
0 answers
74 views

I have following data - {billDate: "21-1-2021", createdDate: "20-2-2021", modifiedDate: "20-2-2022"} ... ] I have converted date string to date js objects. While ...
Sumit M's user avatar
  • 650
0 votes
3 answers
880 views

I have an imported file: import ExportReportCardTemplate from "asset/files/excel/report_card_template.xls"; How can I use it with library import * as xlsx from "xlsx-js-style"; I'...
Huan Huynh's user avatar
1 vote
0 answers
783 views

I'm using this xlsx-js library to generate an Excel file from a list of json objects in a Vue3 application. I need to have values in multiple cells, but it seems that it skips rows which have been ...
Dielna Reboot's user avatar
-1 votes
1 answer
217 views

How to insert a link to a cell from another workbook in a cell? What should be the format? I tried: #'[WorkbookName]sheetName'!D4
Artem's user avatar
  • 1
-1 votes
1 answer
990 views

I'm having trouble reading a .xls file using the ExcelJS library. No problems reading .xlsx files. I used to use only the xlsx js library and did not have any issues reading .xls files. I was under ...
sychordCoder's user avatar
2 votes
1 answer
1k views

I am reading an excel file that has decimal, string, and Unicode characters when the user uploads it. I am seeing a floating point error when reading some decimal values(not all). For example, if a ...
nandhini venkateshwaran's user avatar
1 vote
2 answers
4k views

I'm using xlsx-js with nodejs, and I'm trying to read through an xlsx sheet with a calendar format. Where a 1 denotes that an activity had occurred during that day. I can loop through each row to see ...
Holly Do's user avatar
4 votes
1 answer
14k views

I'm using this xlsx js library to generate an Excel file from a list of TypeScript objects in an Angular5 application. I don't need all attributes of the TypeScript objects and I want to sort the ...
David Kühner's user avatar
2 votes
1 answer
1k views

I am working on a AngularJS project using typescript. I am trying to use the js-xlsx library to parse an xlsx file and I get the compile error: error TS2304: Cannot find name 'XLSX' We are using a ...
nswart's user avatar
  • 173
3 votes
1 answer
24k views

The SheetJS documentation shows a way to take a JSON Object and convert it to an Excel sheet. From their example: var ws = XLSX.utils.json_to_sheet([ {S:1,h:2,e:3,e_1:4,t:5,J:6,S_1:7}, {S:2,...
Tykin's user avatar
  • 502
1 vote
1 answer
1k views

According to this link : http://plnkr.co/edit/w8w96ltypkxrZAWA54c1?p=preview I would set style to cell by this code : s: { fill:{bgColor: {rgb: "034221" }},font:{name:"Aharoni"}} but after ...
Saeed Aliakbari's user avatar
0 votes
1 answer
920 views

I cannot find anyone install the SheetJS to their AngularJS app with dependency injection. I just found the guy without dependency injection and as a plunker here. But how to import library into ...
H.S. Bilgen's user avatar