Files
PhpSpreadsheet/tests/data/Calculation/LookupRef/ADDRESS.php
T
Mark Baker 70f372d88c Start refactoring the Lookup and Reference functions (#1912)
* Start refactoring the Lookup and Reference functions
 - COLUMN(), COLUMNS(), ROW() and ROWS()
 - LOOKUP(), VLOOKUP() and HLOOKUP()
 - Refactor TRANSPOSE() and ADDRESS() functions into their own classes

* Additional unit tests
 - LOOKUP()
 - TRANSPOSE()
 - ADDRESS()
2021-03-10 21:18:33 +01:00

57 lines
638 B
PHP

<?php
return [
[
'$C$2',
2,
3,
],
[
'C$2',
2,
3,
2,
],
[
'$C2',
2,
3,
3,
],
[
'R2C[3]',
2,
3,
2,
false,
],
[
'R[2]C3',
2,
3,
3,
false,
],
[
"'[Book1]Sheet1'!R2C3",
2,
3,
1,
false,
'[Book1]Sheet1',
],
[
"'EXCEL SHEET'!R2C3",
2,
3,
1,
false,
'EXCEL SHEET',
],
[
'#VALUE!',
-2,
-2,
],
];