标签:flow tin blank obj color 方法 .com a10 tar
使用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
标签:flow tin blank obj color 方法 .com a10 tar
原文地址:http://www.cnblogs.com/fsong/p/6869878.html