I'm trying to stylize the rows(fill color), using PHPExcel.
But I have a problem. There are near 100 rows, but PHPExc
el 'getStyle' doesn`t work after 30-40 rows.
I`m trying this code in the loop:
$color_start=array(
'fill' => array(
'type' => PHPExcel_Style_Fill::FILL_SOLID,
'color' => array('rgb' => 'FFD5D8')
)
);
$objPHPExcel->getActiveSheet()->getStyle('A'.$i.':AD'.$i)->applyFromArray($color_start);
Thanks.