I am using PHPExcel to create an xls file. I merged cells (B2: E2), but I want the text entered in B2 to be horizontally centered only in cell B2. It is centered in the merged cell.
$sheet_obj->getStyle('B2')->getAlignment()->setHorizontal(
PHPExcel_Style_Alignment::HORIZONTAL_CENTER
);
source
share