我需要在单元格中存储列的总和。该列是动态创建的。所以我不能使用公式
= SUM(K8:K894)
在
for($k=9;count($columns);$k++){
$objPHPExcel->setActiveSheetIndex(0)->setCellValueByColumnAndRow($k,4,'=SUM(K8:K894)');
}
请给我一个解决方案。请看我的截图。我需要在标题上方一行显示列col1,col2,col3的总和。
答案 0 :(得分:0)
无需添加for
循环。
您可以尝试这样做:(假设您想要将K8中的值添加到某个动态值)
$objPHPExcel->getActiveSheet()
->setCellValue("<Your Column No from where you want to THE SUM VALUE>",
"=SUM(<Your Column No from where you want to start adding i.e K>8:<Your Column No from where you want to start adding i.e K>".count($columns).")")
);