Vtiful\Kernel\Excel::insertFormula Вставить формулу расчета &reftitle.description; public Vtiful\Kernel\Excel::insertFormula introw intcolumn stringformula Вставить формулу расчета. &reftitle.parameters; row строка ячейки column столбец ячейки formula строка формулы &reftitle.returnvalues; Экземпляр Vtiful\Kernel\Excel &reftitle.examples; Пример использования './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(); ]]>