我可以使用 Epplus 创建一个新的数据透视表并添加行字段、数据字段等,但是当我尝试在采用某些公式的数据透视表中添加一些计算字段时,Epplus 没有提供任何选项。有没有办法使用 Epplus 添加计算字段?
我尝试了以下代码:
//The pivot table
var pivotTable = pivotSheet.PivotTables.Add(pivotSheet.Cells["A4"], sourceSheet.Cells["A2:V100"], "PivotTable1");
//The label row field
pivotTable.RowFields.Add(pivotTable.Fields["Col1"]);
pivotTable.DataOnRows = false;
//The data fields
var field = pivotTable.DataFields.Add(pivotTable.Fields["Col2"]);
field.Name = "Count of Col2";
field.Function = OfficeOpenXml.Table.PivotTable.DataFieldFunctions.Count;
field = pivotTable.DataFields.Add(pivotTable.Fields["Col3"]);
field.Name = "Count of Col3";
field.Function = OfficeOpenXml.Table.PivotTable.DataFieldFunctions.Count;
Name of the field = "Sum of Col4" and Formula = "IFError(col5/col6,0)"
现在,我想添加计算字段,例如PivotTable1
如何做到这一点?