I'm trying to freeze the top row and the first 3 columns in a worksheet, using PHPExcel.
I can freeze the row without any problem:
$objPHPExcel->getActiveSheet()->freezePane('A2');
Or I can freeze the column without any problem:
$objPHPExcel->getActiveSheet()->freezePane('D1');
But when I try to use both, the first gets over-written by the second.
Is there any way to use both on the same sheet?
Thanks.