|
@@ 3200-3203 (lines=4) @@
|
| 3197 |
|
$cellRef = $matches[6].$matches[7].':'.$matches[9].$matches[10]; |
| 3198 |
|
if ($matches[2] > '') { |
| 3199 |
|
$matches[2] = trim($matches[2],"\"'"); |
| 3200 |
|
if ((strpos($matches[2],'[') !== false) || (strpos($matches[2],']') !== false)) { |
| 3201 |
|
// It's a Reference to an external workbook (not currently supported) |
| 3202 |
|
return $this->_raiseFormulaError('Unable to access External Workbook'); |
| 3203 |
|
} |
| 3204 |
|
$matches[2] = trim($matches[2],"\"'"); |
| 3205 |
|
// echo '$cellRef='.$cellRef.' in worksheet '.$matches[2].'<br />'; |
| 3206 |
|
$this->_writeDebug('Evaluating Cell Range '.$cellRef.' in worksheet '.$matches[2]); |
|
@@ 3234-3237 (lines=4) @@
|
| 3231 |
|
$cellRef = $matches[6].$matches[7]; |
| 3232 |
|
if ($matches[2] > '') { |
| 3233 |
|
$matches[2] = trim($matches[2],"\"'"); |
| 3234 |
|
if ((strpos($matches[2],'[') !== false) || (strpos($matches[2],']') !== false)) { |
| 3235 |
|
// It's a Reference to an external workbook (not currently supported) |
| 3236 |
|
return $this->_raiseFormulaError('Unable to access External Workbook'); |
| 3237 |
|
} |
| 3238 |
|
// echo '$cellRef='.$cellRef.' in worksheet '.$matches[2].'<br />'; |
| 3239 |
|
$this->_writeDebug('Evaluating Cell '.$cellRef.' in worksheet '.$matches[2]); |
| 3240 |
|
if ($pCellParent !== NULL) { |