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

45 lines
497 B
PHP

<?php
return [
[
null,
null,
'Error',
],
[
true,
true,
'Error',
],
[
42,
42,
'Error',
],
[
'',
'',
'Error',
],
[
'ABC',
'ABC',
'Error',
],
[
'Error',
'#VALUE!',
'Error',
],
[
'Error',
'#NAME?',
'Error',
],
[
'Error',
'#N/A',
'Error',
],
];