diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html
index 9e99d4736..78fcd08d2 100644
--- a/Document-Processing-toc.html
+++ b/Document-Processing-toc.html
@@ -5896,6 +5896,9 @@
Does XlsIO support setting row height for individual cells in Excel?
+
+ Does XlsIO support auto-correcting formulas?
+
diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-auto-correcting-formulas.md b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-auto-correcting-formulas.md
new file mode 100644
index 000000000..0e618b8f7
--- /dev/null
+++ b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-auto-correcting-formulas.md
@@ -0,0 +1,17 @@
+---
+title: Support for auto-correcting formulas | Syncfusion
+description: This page explains whether Syncfusion XlsIO supports auto-correcting formulas using Syncfusion .NET Excel library (XlsIO).
+platform: document-processing
+control: XlsIO
+documentation: UG
+---
+
+# Does XlsIO support auto-correcting formulas?
+
+No, Syncfusion XlsIO does not support auto-correcting or recalculating formulas automatically when loading Excel files. To resolve this, open and resave the Excel file using Microsoft Excel. This triggers formula evaluation and updates the cached results. Once resaved, XlsIO can process the file and return the correct values.
+
+Alternatively, invoke the Calculate method of IWorksheet to evaluate and update all formulas in the worksheet.
+
+Use the EnableSheetCalculations method of IWorksheet to initialize CalcEngine objects and retrieve calculated values of formulas in a worksheet. On completion of worksheet calculation, invoke the DisableSheetCalculations method of IWorksheet to dispose all CalcEngine objects.
+
+For more details, please refer to Working with Formulas | Syncfusion.
\ No newline at end of file