How can I print text vertically in a cell using PHPExcel class ?
need to print like the above figure.
I think you can do by rotating text:
Try this code:
$objPHPExcel->getActiveSheet()->getStyle('B7')->getAlignment()->setTextRotation(90);
Reference: