@@ 3594-3597 (lines=4) @@ | ||
3591 | $cellRef = $matches[6] . $matches[7] . ':' . $matches[9] . $matches[10]; |
|
3592 | if ($matches[2] > '') { |
|
3593 | $matches[2] = trim($matches[2], "\"'"); |
|
3594 | if ((strpos($matches[2], '[') !== false) || (strpos($matches[2], ']') !== false)) { |
|
3595 | // It's a Reference to an external spreadsheet (not currently supported) |
|
3596 | return $this->raiseFormulaError('Unable to access External Workbook'); |
|
3597 | } |
|
3598 | $matches[2] = trim($matches[2], "\"'"); |
|
3599 | $this->_debugLog->writeDebugLog('Evaluating Cell Range ', $cellRef, ' in worksheet ', $matches[2]); |
|
3600 | if ($pCellParent !== null) { |
|
@@ 3624-3627 (lines=4) @@ | ||
3621 | $cellRef = $matches[6] . $matches[7]; |
|
3622 | if ($matches[2] > '') { |
|
3623 | $matches[2] = trim($matches[2], "\"'"); |
|
3624 | if ((strpos($matches[2], '[') !== false) || (strpos($matches[2], ']') !== false)) { |
|
3625 | // It's a Reference to an external spreadsheet (not currently supported) |
|
3626 | return $this->raiseFormulaError('Unable to access External Workbook'); |
|
3627 | } |
|
3628 | $this->_debugLog->writeDebugLog('Evaluating Cell ', $cellRef, ' in worksheet ', $matches[2]); |
|
3629 | if ($pCellParent !== null) { |
|
3630 | $cellSheet = $this->spreadsheet->getSheetByName($matches[2]); |