Good morning,
I need to set cells background colors using PHPExcel, but I don't know how to do it.
This is for my header and It's working:
$styleArray = array(
'font' => array(
'bold' => true,
),
'alignment' => array(
'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_LEFT,
),
'borders' => array(
'allborders' => array(
'style' => PHPExcel_Style_Border::BORDER_THIN,
)
)
);
$objPHPExcel->getActiveSheet()->getStyle('A1:F1')->applyFromArray($styleArray);
Now I'd like to set cells bg colors in this way:
Columns J:Q, if cell's value is "OK", bg color is green; if it's "NO", bg color is red.
Thanks