PhpSpreadsheet/tests/data/Calculation/Functions/ISFORMULA.php
Josh Grant 148bee1991
Support _xlfn. prefix and add ISFORMULA, MODE.SNGL, STDEV.S, STDEV.P
This change adds support for newer functions that are prefixed
by _xlfn. (#356). The calculation engine has been updated to
recognise these as functions, and drop the _xlfn. part.

It also add a couple of the new functions such as STDEV.S/P,
MODE.SNGL, ISFORMULA.

Fixes #356
Closes #390
2018-02-26 09:35:53 +01:00

60 lines
597 B
PHP

<?php
return [
[
false,
null,
],
[
false,
-1,
],
[
false,
0,
],
[
false,
1,
],
[
false,
'',
],
[
false,
'2',
],
[
false,
'#VALUE!',
],
[
false,
'#N/A',
],
[
false,
'TRUE',
],
[
false,
true,
],
[
false,
false,
],
[
true,
'="ABC"',
],
[
true,
'=A1',
],
[
'#REF!',
],
];