PhpSpreadsheet/tests/data/Calculation/Logical/IFERROR.php

45 lines
497 B
PHP
Raw Normal View History

<?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',
],
];