if i insert formula in excel and open file after that and try to close it it it asks me do i whant to save it (i changed nothing), herei the code:
License license = new License();license.SetLicense("Aspose.Cells.lic");
Workbook workbook = new Workbook();Worksheet sheet = workbook.Worksheets[0];sheet.Name =
"test";Cells cells = sheet.Cells;cells[
"B14"].PutValue(33);cells["B15"].Formula = "=B14*99";workbook.CalculateFormula();
workbook.Save("test8.xls");return;
This message was posted using Aspose.Live 2 Forum