mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-23 00:30:09 +00:00
70f372d88c
* 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()
33 lines
387 B
PHP
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',
|
|
],
|
|
];
|