We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5de3c4e commit 08849a7Copy full SHA for 08849a7
src/PhpSpreadsheet/Shared/StringHelper.php
@@ -554,7 +554,7 @@ public static function convertToNumberIfFraction(string &$operand): bool
554
$sign = ($match[1] == '-') ? '-' : '+';
555
$wholePart = ($match[3] === '') ? '' : ($sign . $match[3]);
556
$fractionFormula = '=' . $wholePart . $sign . $match[4];
557
- $operand = Calculation::getInstance()->_calculateFormulaValue($fractionFormula);
+ $operand = Calculation::getInstance()->calculateFormulaValue($fractionFormula);
558
559
return true;
560
}
0 commit comments