Posted 7 March 2025, 2:52 pm EST
Hello,
I need to copy the workbook to make changes that don’t replicate in the original
I did it like this
const novoWorkbook = new GC.Spread.Sheets.Workbook();
novoWorkbook.fromJSON(
workbook.toJSON({
ignoreStyle: excel.semEstilo,
ignoreFormula: excel.semFormulas,
})
);
But doing it this way takes a long time for large spreadsheets, is there another way?