diff --git a/Classes/PHPExcel/Cell.php b/Classes/PHPExcel/Cell.php index c99a3c8b1..83720d343 100644 --- a/Classes/PHPExcel/Cell.php +++ b/Classes/PHPExcel/Cell.php @@ -293,7 +293,7 @@ public function getCalculatedValue($resetLog = true) ); } - if ($result === '#Not Yet Implemented') { + if ($result === '#N/A' || $result === '#Not Yet Implemented') { //echo 'Returning fallback value of '.$this->calculatedValue.' for cell '.$this->getCoordinate().PHP_EOL; return $this->calculatedValue; // Fallback if calculation engine does not support the formula. }