xlsx-template icon indicating copy to clipboard operation
xlsx-template copied to clipboard

Values in sheets are not updated `#VALUE!` is shown instead

Open tiholic opened this issue 6 years ago • 0 comments

let template = new XLSXTemplate(_templateFileBuffer);  //_templateFileBuffer obtained from reading a .xlsx file
template.sheets.forEach((sheet) => template.substitute(sheet.name, context));
let buffer = template.generate({type : 'nodebuffer'});
//then buffer is saved to a file

The output file is expected to have updated values for cells with formulae, instead it shows #VALUE!

tiholic avatar Oct 22 '19 21:10 tiholic