Formula

IChartDataCell.Formula property

Obtiene o establece la fórmula en estilo A1.

public string Formula { get; set; }

Ejemplos

[C#]
IChartDataCell cell = workbook.GetCell(0, "B2");
cell.Formula = "1 + SUM(F2:H5)";

Ver también