简体   繁体   中英

PhpSpreadsheet : SUMIF formula is not working

What is the expected behavior?

I tried to add the formula =SUMIF, but this is not working. An error occure and the formula is deleted when I open the excel file

What is the current behavior?

When the code try to calculate the formula, this is bugging

What are the steps to reproduce?

sumif.xlsx : Check this page : https://github.com/PHPOffice/PhpSpreadsheet/issues/892 to download the xlsx

<?php require 'vendor/autoload.php';

set_time_limit(-1);
//error_reporting(0);
$reader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader("Xlsx");
$objPHPExcel = $reader->load("sumif.xlsx");
$objPHPExcel->setActiveSheetIndex(1);

for($count = 1 ; $count <= 10; $count++)
{
    $objPHPExcel->getActiveSheet()->setCellValue('D'.$count, '=SUMIF(Résumé!D$2:D$22;B'.$count.';Résumé!F$2:F$22)');
}

$objPHPExcel->setActiveSheetIndex(0);

header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="paiement_'.date('Y-m-d').'.xlsx"');
header('Cache-Control: max-age=0');
// If you're serving to IE 9, then the following may be needed
header('Cache-Control: max-age=1');

// If you're serving to IE over SSL, then the following may be needed
header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header ('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); // always modified
header ('Cache-Control: cache, must-revalidate'); // HTTP/1.1
header ('Pragma: public'); // HTTP/1.0
/**/
$objWriter = new \PhpOffice\PhpSpreadsheet\Writer\Xlsx($objPHPExcel);
$objWriter->setPreCalculateFormulas(false);
$objWriter->save('php://output');
/**/
?>

Which versions of PhpSpreadsheet and PHP are affected?

PHP 7.0 and PhpSpreadsheet 1.6.0

On the formula string, try using , instead of ; like this:

'=SUMIF(Résumé!D$2:D$22,B'.$count.',Résumé!F$2:F$22)'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM