sagacity/inc/vendor/phpoffice/phpspreadsheet/tests/data/Calculation/Functions/ERROR_TYPE.php
Ryan Prather d52454d1bb Updates to 3rd party libraries
Add Dockerfile and specific docker-php.ini
2018-08-28 21:27:13 -04:00

60 lines
595 B
PHP

<?php
return [
[
'#N/A',
],
[
'#N/A',
null,
],
[
'#N/A',
-1,
],
[
'#N/A',
1.25,
],
[
'#N/A',
'',
],
[
'#N/A',
'2.5',
],
[
'#N/A',
true,
],
[
1,
'#NULL!',
],
[
2,
'#DIV/0!',
],
[
3,
'#VALUE!',
],
[
4,
'#REF!',
],
[
5,
'#NAME?',
],
[
6,
'#NUM!',
],
[
7,
'#N/A',
],
];