Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Introduced in build 9.1

Description

The RemoveFormulas method removes Excel formulas from the entire workbook, while leaving their values in cells. This method does NOT remove Conditional Formatting or Data Validation.
C#
public void RemoveFormulas()
vb.net
Public Sub RemoveFormulas()

Examples

C#
//Create an ExcelApplication object
ExcelApplication xla = new ExcelApplication();
 
//Open a workbook containing formulas
Workbook wb = xla.Open("FormulasWorkbook.xlsx); 
 
//Call RemoveFormulas
wb.RemoveFormulas();
VB
'Create an ExcelApplication object
Dim xla As New ExcelApplication
 
'Open a workbook containing formulas
Dim wb As Workbook = xla.Open("formulasWorkbook.xlsx")
 
'Call Removeformulas
wb.RemoveFormulas()

 

 

  • No labels