单元格插入公式
函数原型
- insertFormula(int $row, int $column, string $formula)
int $row
单元格所在行
int $column
单元格所在列
string $formula
公式
实例
- $excel = new \Vtiful\Kernel\Excel($config);
- $freeFile = $excel->fileName("free.xlsx")
- ->header(['name', 'money']);
- for($index = 1; $index < 10; $index++) {
- $textFile->insertText($index, 0, 'viest');
- $textFile->insertText($index, 1, 10);
- }
- $textFile->insertText(12, 0, "Total");
- $textFile->insertFormula(12, 1, '=SUM(B2:B11)');
- $freeFile->output();