Files
PhpSpreadsheet/tests/data/Calculation/LookupRef/COLUMN.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

33 lines
387 B
PHP

<?php
return [
[
1,
null,
],
[
2,
'B13',
],
[
[2, 3, 4],
'B2:D2',
],
[
2,
['B' => 'B5', 'C' => 'C5', 'D' => 'D5'],
],
[
[2, 3, 4],
'B2:D3',
],
[
[2, 3, 4],
'Sheet1!B2:D2',
],
[
[2, 3, 4],
'"WorkSheet #1"!B2:D2',
],
];