PHPExcel动态合并行

时间:2019-11-13 09:36:34

标签: php phpexcel

我正在使用setCellValueExplictByColumnAndRow通过使用数字单元格坐标来设置单元格值。因此,我不知道合并单元格的字母是什么。

我现在尝试使用 mergeCellsByColumnAndRow 进行合并,但似乎无法正常工作。

以下是我的以下代码:

    foreach ($tasks as $task){

    if($task->type!=$oldTaskType){
    $sheet->setCellValueExplicitByColumnAndRow(0 , $rownum, $task->type);
    }
    else{
    // merge previous row with current row 
   // $sheet->mergeCellsByColumnAndRow(0, $rownum, 0,$rownum+1);
    }

    $sheet->setCellValueExplicitByColumnAndRow(1, $rownum, $task->name);
    $rownum++;
    $oldTaskType = $task->type;

    }

这是我的预期输出:

enter image description here

请帮助。谢谢

0 个答案:

没有答案