LookupRef.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. <?php
  2. namespace PhpOffice\PhpSpreadsheet\Calculation;
  3. use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Address;
  4. use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\HLookup;
  5. use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Indirect;
  6. use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Lookup;
  7. use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Matrix;
  8. use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\Offset;
  9. use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\RowColumnInformation;
  10. use PhpOffice\PhpSpreadsheet\Calculation\LookupRef\VLookup;
  11. use PhpOffice\PhpSpreadsheet\Cell\Cell;
  12. use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
  13. /**
  14. * @deprecated 1.18.0
  15. */
  16. class LookupRef
  17. {
  18. /**
  19. * CELL_ADDRESS.
  20. *
  21. * Creates a cell address as text, given specified row and column numbers.
  22. *
  23. * Excel Function:
  24. * =ADDRESS(row, column, [relativity], [referenceStyle], [sheetText])
  25. *
  26. * @deprecated 1.18.0
  27. * Use the cell() method in the LookupRef\Address class instead
  28. * @see LookupRef\Address::cell()
  29. *
  30. * @param mixed $row Row number to use in the cell reference
  31. * @param mixed $column Column number to use in the cell reference
  32. * @param int $relativity Flag indicating the type of reference to return
  33. * 1 or omitted Absolute
  34. * 2 Absolute row; relative column
  35. * 3 Relative row; absolute column
  36. * 4 Relative
  37. * @param bool $referenceStyle A logical value that specifies the A1 or R1C1 reference style.
  38. * TRUE or omitted CELL_ADDRESS returns an A1-style reference
  39. * FALSE CELL_ADDRESS returns an R1C1-style reference
  40. * @param array|string $sheetText Optional Name of worksheet to use
  41. *
  42. * @return array|string
  43. */
  44. public static function cellAddress($row, $column, $relativity = 1, $referenceStyle = true, $sheetText = '')
  45. {
  46. return Address::cell($row, $column, $relativity, $referenceStyle, $sheetText);
  47. }
  48. /**
  49. * COLUMN.
  50. *
  51. * Returns the column number of the given cell reference
  52. * If the cell reference is a range of cells, COLUMN returns the column numbers of each column
  53. * in the reference as a horizontal array.
  54. * If cell reference is omitted, and the function is being called through the calculation engine,
  55. * then it is assumed to be the reference of the cell in which the COLUMN function appears;
  56. * otherwise this function returns 1.
  57. *
  58. * Excel Function:
  59. * =COLUMN([cellAddress])
  60. *
  61. * @deprecated 1.18.0
  62. * Use the COLUMN() method in the LookupRef\RowColumnInformation class instead
  63. * @see LookupRef\RowColumnInformation::COLUMN()
  64. *
  65. * @param null|array|string $cellAddress A reference to a range of cells for which you want the column numbers
  66. *
  67. * @return int|int[]|string
  68. */
  69. public static function COLUMN($cellAddress = null, ?Cell $cell = null)
  70. {
  71. return RowColumnInformation::COLUMN($cellAddress, $cell);
  72. }
  73. /**
  74. * COLUMNS.
  75. *
  76. * Returns the number of columns in an array or reference.
  77. *
  78. * Excel Function:
  79. * =COLUMNS(cellAddress)
  80. *
  81. * @deprecated 1.18.0
  82. * Use the COLUMNS() method in the LookupRef\RowColumnInformation class instead
  83. * @see LookupRef\RowColumnInformation::COLUMNS()
  84. *
  85. * @param null|array|string $cellAddress An array or array formula, or a reference to a range of cells
  86. * for which you want the number of columns
  87. *
  88. * @return int|string The number of columns in cellAddress, or a string if arguments are invalid
  89. */
  90. public static function COLUMNS($cellAddress = null)
  91. {
  92. return RowColumnInformation::COLUMNS($cellAddress);
  93. }
  94. /**
  95. * ROW.
  96. *
  97. * Returns the row number of the given cell reference
  98. * If the cell reference is a range of cells, ROW returns the row numbers of each row in the reference
  99. * as a vertical array.
  100. * If cell reference is omitted, and the function is being called through the calculation engine,
  101. * then it is assumed to be the reference of the cell in which the ROW function appears;
  102. * otherwise this function returns 1.
  103. *
  104. * Excel Function:
  105. * =ROW([cellAddress])
  106. *
  107. * @deprecated 1.18.0
  108. * Use the ROW() method in the LookupRef\RowColumnInformation class instead
  109. * @see LookupRef\RowColumnInformation::ROW()
  110. *
  111. * @param null|array|string $cellAddress A reference to a range of cells for which you want the row numbers
  112. *
  113. * @return int|mixed[]|string
  114. */
  115. public static function ROW($cellAddress = null, ?Cell $cell = null)
  116. {
  117. return RowColumnInformation::ROW($cellAddress, $cell);
  118. }
  119. /**
  120. * ROWS.
  121. *
  122. * Returns the number of rows in an array or reference.
  123. *
  124. * Excel Function:
  125. * =ROWS(cellAddress)
  126. *
  127. * @deprecated 1.18.0
  128. * Use the ROWS() method in the LookupRef\RowColumnInformation class instead
  129. * @see LookupRef\RowColumnInformation::ROWS()
  130. *
  131. * @param null|array|string $cellAddress An array or array formula, or a reference to a range of cells
  132. * for which you want the number of rows
  133. *
  134. * @return int|string The number of rows in cellAddress, or a string if arguments are invalid
  135. */
  136. public static function ROWS($cellAddress = null)
  137. {
  138. return RowColumnInformation::ROWS($cellAddress);
  139. }
  140. /**
  141. * HYPERLINK.
  142. *
  143. * Excel Function:
  144. * =HYPERLINK(linkURL,displayName)
  145. *
  146. * @deprecated 1.18.0
  147. * Use the set() method in the LookupRef\Hyperlink class instead
  148. * @see LookupRef\Hyperlink::set()
  149. *
  150. * @param mixed $linkURL Expect string. Value to check, is also the value returned when no error
  151. * @param mixed $displayName Expect string. Value to return when testValue is an error condition
  152. * @param Cell $cell The cell to set the hyperlink in
  153. *
  154. * @return string The value of $displayName (or $linkURL if $displayName was blank)
  155. */
  156. public static function HYPERLINK($linkURL = '', $displayName = null, ?Cell $cell = null)
  157. {
  158. return LookupRef\Hyperlink::set($linkURL, $displayName, $cell);
  159. }
  160. /**
  161. * INDIRECT.
  162. *
  163. * Returns the reference specified by a text string.
  164. * References are immediately evaluated to display their contents.
  165. *
  166. * Excel Function:
  167. * =INDIRECT(cellAddress)
  168. *
  169. * @deprecated 1.18.0
  170. * Use the INDIRECT() method in the LookupRef\Indirect class instead
  171. * @see LookupRef\Indirect::INDIRECT()
  172. *
  173. * @param array|string $cellAddress $cellAddress The cell address of the current cell (containing this formula)
  174. * @param Cell $cell The current cell (containing this formula)
  175. *
  176. * @return array|string An array containing a cell or range of cells, or a string on error
  177. *
  178. * NOTE - INDIRECT() does not yet support the optional a1 parameter introduced in Excel 2010
  179. */
  180. public static function INDIRECT($cellAddress, Cell $cell)
  181. {
  182. return Indirect::INDIRECT($cellAddress, true, $cell);
  183. }
  184. /**
  185. * OFFSET.
  186. *
  187. * Returns a reference to a range that is a specified number of rows and columns from a cell or range of cells.
  188. * The reference that is returned can be a single cell or a range of cells. You can specify the number of rows and
  189. * the number of columns to be returned.
  190. *
  191. * Excel Function:
  192. * =OFFSET(cellAddress, rows, cols, [height], [width])
  193. *
  194. * @deprecated 1.18.0
  195. * Use the OFFSET() method in the LookupRef\Offset class instead
  196. * @see LookupRef\Offset::OFFSET()
  197. *
  198. * @param null|string $cellAddress The reference from which you want to base the offset.
  199. * Reference must refer to a cell or range of adjacent cells;
  200. * otherwise, OFFSET returns the #VALUE! error value.
  201. * @param mixed $rows The number of rows, up or down, that you want the upper-left cell to refer to.
  202. * Using 5 as the rows argument specifies that the upper-left cell in the
  203. * reference is five rows below reference. Rows can be positive (which means
  204. * below the starting reference) or negative (which means above the starting
  205. * reference).
  206. * @param mixed $columns The number of columns, to the left or right, that you want the upper-left cell
  207. * of the result to refer to. Using 5 as the cols argument specifies that the
  208. * upper-left cell in the reference is five columns to the right of reference.
  209. * Cols can be positive (which means to the right of the starting reference)
  210. * or negative (which means to the left of the starting reference).
  211. * @param mixed $height The height, in number of rows, that you want the returned reference to be.
  212. * Height must be a positive number.
  213. * @param mixed $width The width, in number of columns, that you want the returned reference to be.
  214. * Width must be a positive number.
  215. *
  216. * @return array|int|string An array containing a cell or range of cells, or a string on error
  217. */
  218. public static function OFFSET($cellAddress = null, $rows = 0, $columns = 0, $height = null, $width = null, ?Cell $cell = null)
  219. {
  220. return Offset::OFFSET($cellAddress, $rows, $columns, $height, $width, $cell);
  221. }
  222. /**
  223. * CHOOSE.
  224. *
  225. * Uses lookup_value to return a value from the list of value arguments.
  226. * Use CHOOSE to select one of up to 254 values based on the lookup_value.
  227. *
  228. * Excel Function:
  229. * =CHOOSE(index_num, value1, [value2], ...)
  230. *
  231. * @deprecated 1.18.0
  232. * Use the choose() method in the LookupRef\Selection class instead
  233. * @see LookupRef\Selection::choose()
  234. *
  235. * @param array $chooseArgs
  236. *
  237. * @return mixed The selected value
  238. */
  239. public static function CHOOSE(...$chooseArgs)
  240. {
  241. return LookupRef\Selection::choose(...$chooseArgs);
  242. }
  243. /**
  244. * MATCH.
  245. *
  246. * The MATCH function searches for a specified item in a range of cells
  247. *
  248. * Excel Function:
  249. * =MATCH(lookup_value, lookup_array, [match_type])
  250. *
  251. * @deprecated 1.18.0
  252. * Use the MATCH() method in the LookupRef\ExcelMatch class instead
  253. * @see LookupRef\ExcelMatch::MATCH()
  254. *
  255. * @param mixed $lookupValue The value that you want to match in lookup_array
  256. * @param mixed $lookupArray The range of cells being searched
  257. * @param mixed $matchType The number -1, 0, or 1. -1 means above, 0 means exact match, 1 means below.
  258. * If match_type is 1 or -1, the list has to be ordered.
  259. *
  260. * @return array|int|string The relative position of the found item
  261. */
  262. public static function MATCH($lookupValue, $lookupArray, $matchType = 1)
  263. {
  264. return LookupRef\ExcelMatch::MATCH($lookupValue, $lookupArray, $matchType);
  265. }
  266. /**
  267. * INDEX.
  268. *
  269. * Uses an index to choose a value from a reference or array
  270. *
  271. * Excel Function:
  272. * =INDEX(range_array, row_num, [column_num])
  273. *
  274. * @deprecated 1.18.0
  275. * Use the index() method in the LookupRef\Matrix class instead
  276. * @see LookupRef\Matrix::index()
  277. *
  278. * @param mixed $rowNum The row in the array or range from which to return a value.
  279. * If row_num is omitted, column_num is required.
  280. * @param mixed $columnNum The column in the array or range from which to return a value.
  281. * If column_num is omitted, row_num is required.
  282. * @param mixed $matrix
  283. *
  284. * @return mixed the value of a specified cell or array of cells
  285. */
  286. public static function INDEX($matrix, $rowNum = 0, $columnNum = 0)
  287. {
  288. return Matrix::index($matrix, $rowNum, $columnNum);
  289. }
  290. /**
  291. * TRANSPOSE.
  292. *
  293. * @deprecated 1.18.0
  294. * Use the transpose() method in the LookupRef\Matrix class instead
  295. * @see LookupRef\Matrix::transpose()
  296. *
  297. * @param array $matrixData A matrix of values
  298. *
  299. * @return array
  300. *
  301. * Unlike the Excel TRANSPOSE function, which will only work on a single row or column,
  302. * this function will transpose a full matrix
  303. */
  304. public static function TRANSPOSE($matrixData)
  305. {
  306. return Matrix::transpose($matrixData);
  307. }
  308. /**
  309. * VLOOKUP
  310. * The VLOOKUP function searches for value in the left-most column of lookup_array and returns the value
  311. * in the same row based on the index_number.
  312. *
  313. * @deprecated 1.18.0
  314. * Use the lookup() method in the LookupRef\VLookup class instead
  315. * @see LookupRef\VLookup::lookup()
  316. *
  317. * @param mixed $lookup_value The value that you want to match in lookup_array
  318. * @param mixed $lookup_array The range of cells being searched
  319. * @param mixed $index_number The column number in table_array from which the matching value must be returned.
  320. * The first column is 1.
  321. * @param mixed $not_exact_match determines if you are looking for an exact match based on lookup_value
  322. *
  323. * @return mixed The value of the found cell
  324. */
  325. public static function VLOOKUP($lookup_value, $lookup_array, $index_number, $not_exact_match = true)
  326. {
  327. return VLookup::lookup($lookup_value, $lookup_array, $index_number, $not_exact_match);
  328. }
  329. /**
  330. * HLOOKUP
  331. * The HLOOKUP function searches for value in the top-most row of lookup_array and returns the value
  332. * in the same column based on the index_number.
  333. *
  334. * @deprecated 1.18.0
  335. * Use the lookup() method in the LookupRef\HLookup class instead
  336. * @see LookupRef\HLookup::lookup()
  337. *
  338. * @param mixed $lookup_value The value that you want to match in lookup_array
  339. * @param mixed $lookup_array The range of cells being searched
  340. * @param mixed $index_number The row number in table_array from which the matching value must be returned.
  341. * The first row is 1.
  342. * @param mixed $not_exact_match determines if you are looking for an exact match based on lookup_value
  343. *
  344. * @return mixed The value of the found cell
  345. */
  346. public static function HLOOKUP($lookup_value, $lookup_array, $index_number, $not_exact_match = true)
  347. {
  348. return HLookup::lookup($lookup_value, $lookup_array, $index_number, $not_exact_match);
  349. }
  350. /**
  351. * LOOKUP
  352. * The LOOKUP function searches for value either from a one-row or one-column range or from an array.
  353. *
  354. * @deprecated 1.18.0
  355. * Use the lookup() method in the LookupRef\Lookup class instead
  356. * @see LookupRef\Lookup::lookup()
  357. *
  358. * @param mixed $lookup_value The value that you want to match in lookup_array
  359. * @param mixed $lookup_vector The range of cells being searched
  360. * @param null|mixed $result_vector The column from which the matching value must be returned
  361. *
  362. * @return mixed The value of the found cell
  363. */
  364. public static function LOOKUP($lookup_value, $lookup_vector, $result_vector = null)
  365. {
  366. return Lookup::lookup($lookup_value, $lookup_vector, $result_vector);
  367. }
  368. /**
  369. * FORMULATEXT.
  370. *
  371. * @deprecated 1.18.0
  372. * Use the text() method in the LookupRef\Formula class instead
  373. * @see LookupRef\Formula::text()
  374. *
  375. * @param mixed $cellReference The cell to check
  376. * @param Cell $cell The current cell (containing this formula)
  377. *
  378. * @return string
  379. */
  380. public static function FORMULATEXT($cellReference = '', ?Cell $cell = null)
  381. {
  382. return LookupRef\Formula::text($cellReference, $cell);
  383. }
  384. }