EPPlus设置Excel公式

前言

Excel中提供了功能强大的公式,EPPlus同样也支持Excel格式。

实现

// RowCount、ColumnCount 整数,分别是行计数器、列计数器
ThisCell = Worksheet.Cells[RowCount, ColumnCount];
string StartCell = Worksheet.Cells[4, ColumnCount].Address;
string EndCell = Worksheet.Cells[(RowCount - 1), ColumnCount].Address;
Formula = String.Format("=SUM({0}:{1})", StartCell, EndCell);
ThisCell.Formula = Formula;

由于Excel公式是采用A1、B1之类的字符串来定位单元格的。但是,在EPPlus通常都用正整数来定位单元格,例如Worksheet.Cells[1, 1]则表示A1,Worksheet.Cells[1, 2]则表示B1。可用Address来获取该字符串:

string cell = Worksheet.Cells[1, 1].Address;

 

你可能感兴趣的:(C#,EPPlus,C#,EPPlus)