Abhilash Sharma
Abhilash Sharma

Reputation: 113

Dynamic Cell Merging in phpspreadsheet

My question is about generating an Excel sheet in codeigniter. The excel sheet sub-headings are not fixed, they are as per data, that's why i am not able to merge cells. Is there any solution for that? Ex:-Here sub-headings are not fix.

Upvotes: 10

Views: 25624

Answers (2)

minh_hyng
minh_hyng

Reputation: 1

$spreadsheet->getActiveSheet()->mergeCells("from:to");

exemple: $spreadsheet->getActiveSheet()->mergeCells("A1:F1");

Upvotes: 0

Cholowao
Cholowao

Reputation: 967

$spreadsheet->getActiveSheet()->mergeCells("$range1:$range2");

Upvotes: 23

Related Questions