PHPExcel SUM 返回0
Posted wakasann
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHPExcel SUM 返回0相关的知识,希望对你有一定的参考价值。
使用phpExcel 导出Excel最后的代码是:
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, ‘Excel2007‘); //force user to download the Excel file without writing it to server‘s HD $objWriter->save(‘php://output‘);
导出的Excel的"=SUM(A1:A10)"的和还是0,解决方法是在"$objWriter->save(‘php://output‘);"之前添加"$objWriter->setPreCalculateFormulas(true);"
参考: PhpExcel SUM() returning 0
以上是关于PHPExcel SUM 返回0的主要内容,如果未能解决你的问题,请参考以下文章
php代码片段: sendFile/videoStream/sendEmail/phpexcel/ffmpeg/zip
append() 在这个代码片段中是如何工作的?与特定变量混淆[重复]
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段