(PECL xlswriter >= 1.2.1)
Vtiful\Kernel\Excel::insertFormula — Вставляет формулу расчёта
Метод вставляет формулу расчёта.
row
Строка ячейки.
column
Столбец ячейки.
formula
Строка формулы.
Метод возвращает экземпляр класса Vtiful\Kernel\Excel.
Пример #1 Пример вставки формулы
<?php
$config = [
'path' => './tests'
];
$excel = new \Vtiful\Kernel\Excel($config);
$file = $excel->fileName("free.xlsx")
->header(['name', 'money']);
for($index = 1; $index < 10; $index++) {
$file->insertText($index, 0, 'viest');
$file->insertText($index, 1, 10);
}
$file->insertText(12, 0, "Total");
$file->insertFormula(12, 1, '=SUM(B2:B11)'); // Вставить формулу
$file->output();
?>