Using PHPExcel, I'm attempting to freeze the top row and the first three columns in a worksheet.
I have no trouble freezing the row:
$objPHPExcel->getActiveSheet()->freezePane('A2');
Or I can freeze the column without any problem:
$objPHPExcel->getActiveSheet()->freezePane('D1');
However, when I try to use both, the second overwrites the first.
Is it possible to utilize both on one sheet?