Hi Aspose Cells team,
-
Open input.xlsx in Excel, check Formulas / Calculation Options: note that it is set to “Automatic”
-
Open input.xlsx with Aspose Cells Java (18.12-19.1): note that reCalculateOnOpen=true
Workbook inputWorkBook = new Workbook(“input.xlsx”);
Assert.assertEquals(inputWorkBook.getSettings().getReCalculateOnOpen(), true); -
Open input.xlsx with Aspose Cells Java (19.2-19.9): note that reCalculateOnOpen=false
Workbook inputWorkBook = new Workbook(“input.xlsx”);
Assert.assertEquals(inputWorkBook.getSettings().getReCalculateOnOpen(), false);
… which is wrong!
Can you check on this issue?
May be related to Workbook setting "ReCalculateOnOpen" not persisted - #10 by TarasTielkes
Regards,
Jean.input.zip (28.0 KB)