I hava a excel file that contains some Formulas,After remove formulas using Aspose.Cells,The cell display abnormal.
Version info:
Aspose.Cells for Net 23.1.1
The demo:
void Main()
{
Aspose.Cells.Workbook workBook = new Aspose.Cells.Workbook(@"C:\demo.xlsx");
//If remove this line,It display normal
workBook.CalculateFormula();
workBook.Worksheets[0].Cells.RemoveFormulas();
workBook.Save(@"C:\output.xlsx");
}
The demo file:
demo.7z (13.7 KB)
The screenshot:
20230201213252.png (25.5 KB)