Bugfix: (ncrypthic) Work Item GH-570 - Ignore inlineStr type if formula element exists
This commit is contained in:
parent
99b375613d
commit
1ba2ae0cec
|
@ -694,7 +694,7 @@ class PHPExcel_Calculation_LookupRef
|
||||||
{
|
{
|
||||||
$lookup_value = PHPExcel_Calculation_Functions::flattenSingleValue($lookup_value);
|
$lookup_value = PHPExcel_Calculation_Functions::flattenSingleValue($lookup_value);
|
||||||
$index_number = PHPExcel_Calculation_Functions::flattenSingleValue($index_number);
|
$index_number = PHPExcel_Calculation_Functions::flattenSingleValue($index_number);
|
||||||
$not_exact_match = PHPExcel_Calculation_Functions::flattenSingleValue($not_exact_match);
|
$not_exact_match = PHPExcel_Calculation_Functions::flattenSingleValue($not_exact_match);
|
||||||
|
|
||||||
// index_number must be greater than or equal to 1
|
// index_number must be greater than or equal to 1
|
||||||
if ($index_number < 1) {
|
if ($index_number < 1) {
|
||||||
|
|
|
@ -848,8 +848,12 @@ class PHPExcel_Reader_Excel2007 extends PHPExcel_Reader_Abstract implements PHPE
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "inlineStr":
|
case "inlineStr":
|
||||||
// echo 'Inline String', PHP_EOL;
|
// echo 'Inline String', PHP_EOL;
|
||||||
$value = $this->parseRichText($c->is);
|
if (isset($c->f)) {
|
||||||
|
$this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError');
|
||||||
|
} else {
|
||||||
|
$value = $this->parseRichText($c->is);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case "e":
|
case "e":
|
||||||
// echo 'Error', PHP_EOL;
|
// echo 'Error', PHP_EOL;
|
||||||
|
@ -862,7 +866,7 @@ class PHPExcel_Reader_Excel2007 extends PHPExcel_Reader_Abstract implements PHPE
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// echo 'Default', PHP_EOL;
|
// echo 'Default', PHP_EOL;
|
||||||
if (!isset($c->f)) {
|
if (!isset($c->f)) {
|
||||||
// echo 'Not a Formula', PHP_EOL;
|
// echo 'Not a Formula', PHP_EOL;
|
||||||
$value = self::castToString($c);
|
$value = self::castToString($c);
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
Planned for 1.8.2
|
Planned for 1.8.2
|
||||||
- Bugfix: (MBaker) - Fix to getCell() method when cell reference includes a worksheet reference
|
- Bugfix: (MBaker) - Fix to getCell() method when cell reference includes a worksheet reference
|
||||||
|
- Bugfix: (ncrypthic) Work Item GH-570 - Ignore inlineStr type if formula element exists
|
||||||
|
|
||||||
|
|
||||||
2015-04-30 (v1.8.1):
|
2015-04-30 (v1.8.1):
|
||||||
|
|
Loading…
Reference in New Issue