[]
Gets or sets whether to export shared formulas when saving the workbook.
Shared formula export is enabled by default. This option can be useful when working with third-party libraries that do not support shared formulas.
public bool ExportSharedFormula { get; set; }
Public Property ExportSharedFormula As Boolean
XlsxSaveOptions options = new XlsxSaveOptions();
options.ExportSharedFormula = false;
bool exportSharedFormula = options.ExportSharedFormula;
workbook.Save("path/to/output.xlsx", options);