after trying to purchase the pro version contact with the people from https://sheetjs.com/pro/ (this would be the easiest option, but never receive our quote) I have been trying with xlsx-js-style (https://gitbrent.github.io/xlsx-js-style/) which works really well (congratulations to the dev).
What is wrong in the below example? I use the given example which works well for cells A1 and A2.
ws["A1"].s = {
font: {
name: "Calibri",
sz: 24,
bold: true,
color: { rgb: "FFFFAA00" },
},
};
If I however use any other cell, for example "B2", the script crashes and just stops. No error messages in the console.
ws["B1"].s = {
font: {
name: "Calibri",
sz: 24,
bold: true,
color: { rgb: "FFFFAA00" },
},
};
Does anyone have tips or a trick for this? If the people from https://sheetjs.com/pro/ read this, we're still interested!