PhpSpreadsheet/tests/data/Calculation/TextData/CODE.php

49 lines
490 B
PHP
Raw Normal View History

<?php
return [
[
null,
'#VALUE!',
],
[
'',
'#VALUE!',
],
[
'ABC',
65,
],
[
123,
49,
],
[
true,
84,
],
[
'DEF',
68,
],
[
'PHPExcel',
80,
],
[
1.5,
49,
],
[
'Mark Baker',
77,
],
[
'mark baker',
109,
],
[
'£125.00',
163,
],
];