TotalsRowFormula Property

Office Open XML

Sets a custom Totals row Formula. Be carefull with this property since it is not validated.

Examples

tbl.Columns[9].TotalsRowFormula = string.Format("SUM([{0}])",tbl.Columns[9].Name);

Namespace:  OfficeOpenXml.Table
Assembly:  EPPlus (in EPPlus.dll) Version: 3.0.0.1 (3.0.0.1)

Syntax

C#
public string TotalsRowFormula { get; set; }
Visual Basic (Declaration)
Public Property TotalsRowFormula As String
Visual C++
public:
property String^ TotalsRowFormula {
	String^ get ();
	void set (String^ value);
}

See Also