单元格插入公式

函数原型

  1. insertFormula(int $row, int $column, string $formula)

int $row

单元格所在行

int $column

单元格所在列

string $formula

公式

实例

  1. $excel = new \Vtiful\Kernel\Excel($config);
  2.  
  3. $freeFile = $excel->fileName("free.xlsx")
  4. ->header(['name', 'money']);
  5.  
  6. for($index = 1; $index < 10; $index++) {
  7. $textFile->insertText($index, 0, 'viest');
  8. $textFile->insertText($index, 1, 10);
  9. }
  10.  
  11. $textFile->insertText(12, 0, "Total");
  12. $textFile->insertFormula(12, 1, '=SUM(B2:B11)');
  13.  
  14. $freeFile->output();