[SOLVED] PHPExcel Make Last row bold

Issue This is how we can make the First row text as bold:- $sheet->getStyle(‘A1:’.$sheet->getHighestColumn().’1′)->getFont()->setBold(true); But how can we make the Last row of the sheet as bold? Solution The function $sheet->getHighestRow() should be possible to use. So with your example

Continue reading