for ($char = 'A'; $char <= 'Z'; $char++) {
$objPHPExcel->getActiveSheet()->setCellValue($char.'5','40');
}
for ($i=1;$i<=100;$i++){
$objPHPExcel->getActiveSheet()->setCellValue('A'.$i,generateRandomString());
}
$objPHPExcel->getActiveSheet()->freezePane('B');
// Write the PHPExcel object to browser as HTML
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'HTML');
$objWriter->save('php://output');
$objPHPExcel->getActiveSheet()->freezePane('B');
Freeze not happened for the " A " (First column) column.
Attached screen shot FYI.
Freeze not happened for the " A " (First column) column.
When i scroll COL A not freeze, col A also hidding.