After few hours spend on the PHPExcel error Worksheet!A2 -> Formula Error: Unexpected , I found out that
$sheet->setCellValue($col . $row, $value);
throws me this error if I try to insert string =ER=, s.r.o. into the cell. As I removed first = sign it start to work. However weird it looks =ER= is the name of real company. And I want to write it as a string into the cell.
The question is which signs and how should be escaped to avoid this behavior of PHPExcel? I expected PHPExcel will escape this cases. Like whet I send data to DB...