I am using phpexcel to generate excel document with PHP. the question is, how to make auto height row using phpexcel? many thanks :)
You can set it by using following code,
$objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1); $objPHPExcel->getActiveSheet()->getStyle('E')->getAlignment()->setWrapText(true);