Results 5 comments of Ignatov Dan

This message can be caused by an incorrect order of some nodes in internal styles.xml/sheet1.xml/... files, or by an incomplete set of values, or by an incorrect (non xml) content...

I have checked how [ExcelJS exports empty xlsx file](https://codepen.io/DanIgnatov/pen/GeKMzo) from a browser and my MS Excel 2013 opened it without error messages. It seems there are differences between ExcelJS codes...

Would you please publish your incorrect XLSX file so I can check how Excel2013 and Office365Excel will open it and investigate what is incorrect in its internals? This information can...

I tried this code (thanks to @szilch and his 'test-file.xlsx' file): ``` var workbook = new ExcelJS.Workbook(); workbook.xlsx.writeBuffer().then(function(buffer) { saveAs(new Blob([buffer], { type: 'application/octet-stream' }), 'Employees.xlsx'); }); ``` in my...

Would you pls share your minimized xlsx file and source code? I want to check it in my environment.