Vtiful\Kernel\Excel::insertFormula

(PECL xlswriter >= 1.2.1)

Vtiful\Kernel\Excel::insertFormulaВставить формулу расчёта

Описание

public Vtiful\Kernel\Excel::insertFormula(int $row, int $column, string $formula)

Вставить формулу расчёта.

Список параметров

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($index0'viest');
    
$file->insertText($index110);
}

$file->insertText(120"Total");
$file->insertFormula(121'=SUM(B2:B11)'); // вставить формулу

$file->output();
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top