Class: PHPExcel_Calculation_LookupRef
Source Location: /PHPExcel/Calculation/LookupRef.php
PHPExcel_Calculation_LookupRef
Author(s):
Copyright:
- Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
|
|
Class Details
Class Methods
static method CELL_ADDRESS [line 70]
static string CELL_ADDRESS(
row
$row, column
$column, [relativity
$relativity = 1], [referenceStyle
$referenceStyle = True], [sheetText
$sheetText = ''])
|
|
CELL_ADDRESS Creates a cell address as text, given specified row and column numbers. Excel Function: =ADDRESS(row, column, [relativity], [referenceStyle], [sheetText])
Tags:
Parameters:
static method CHOOSE [line 447]
static mixed CHOOSE(
index_num
0, value1...
1)
|
|
CHOOSE Uses lookup_value to return a value from the list of value arguments. Use CHOOSE to select one of up to 254 values based on the lookup_value. Excel Function: =CHOOSE(index_num, value1, [value2], ...)
Tags:
Parameters:
static method COLUMN [line 112]
static integer COLUMN(
[cellAddress
$cellAddress = Null])
|
|
COLUMN Returns the column number of the given cell reference If the cell reference is a range of cells, COLUMN returns the column numbers of each column in the reference as a horizontal array. If cell reference is omitted, and the function is being called through the calculation engine, then it is assumed to be the reference of the cell in which the COLUMN function appears; otherwise this function returns 0. Excel Function: =COLUMN([cellAddress])
Tags:
Parameters:
static method COLUMNS [line 152]
static integer COLUMNS(
[cellAddress
$cellAddress = Null])
|
|
COLUMNS Returns the number of columns in an array or reference. Excel Function: =COLUMNS(cellAddress)
Tags:
Parameters:
static method HYPERLINK [line 258]
static mixed HYPERLINK(
[string
$linkURL = ''], [string
$displayName = null], [PHPExcel_Cell
$pCell = null])
|
|
HYPERLINK Excel Function: =HYPERLINK(linkURL,displayName)
Tags:
Parameters:
static method INDEX [line 599]
static mixed INDEX(
range_array
$arrayValues, [row_num
$rowNum = 0], [column_num
$columnNum = 0])
|
|
INDEX Uses an index to choose a value from a reference or array Excel Function: =INDEX(range_array, row_num, [column_num])
Tags:
Parameters:
static method INDIRECT [line 296]
static mixed INDIRECT(
[cellAddress
$cellAddress = Null], [PHPExcel_Cell
$pCell = null])
|
|
INDIRECT Returns the reference specified by a text string. References are immediately evaluated to display their contents. Excel Function: =INDIRECT(cellAddress) NOTE - INDIRECT() does not yet support the optional a1 parameter introduced in Excel 2010
Tags:
Parameters:
static method LOOKUP [line 749]
static mixed LOOKUP(
lookup_value
$lookup_value, lookup_vector
$lookup_vector, [result_vector
$result_vector = null])
|
|
LOOKUP The LOOKUP function searches for value either from a one-row or one-column range or from an array.
Tags:
Parameters:
static method MATCH [line 486]
static integer MATCH(
lookup_value
$lookup_value, lookup_array
$lookup_array, [match_type
$match_type = 1])
|
|
MATCH The MATCH function searches for a specified item in a range of cells Excel Function: =MATCH(lookup_value, lookup_array, [match_type])
Tags:
Parameters:
static method OFFSET [line 361]
static string OFFSET(
[cellAddress
$cellAddress = Null], [rows
$rows = 0], [cols
$columns = 0], [height
$height = null], [width
$width = null])
|
|
OFFSET Returns a reference to a range that is a specified number of rows and columns from a cell or range of cells. The reference that is returned can be a single cell or a range of cells. You can specify the number of rows and the number of columns to be returned. Excel Function: =OFFSET(cellAddress, rows, cols, [height], [width])
Tags:
Parameters:
static method ROW [line 186]
static integer ROW(
[cellAddress
$cellAddress = Null])
|
|
ROW Returns the row number of the given cell reference If the cell reference is a range of cells, ROW returns the row numbers of each row in the reference as a vertical array. If cell reference is omitted, and the function is being called through the calculation engine, then it is assumed to be the reference of the cell in which the ROW function appears; otherwise this function returns 0. Excel Function: =ROW([cellAddress])
Tags:
Parameters:
static method ROWS [line 227]
static integer ROWS(
[cellAddress
$cellAddress = Null])
|
|
ROWS Returns the number of rows in an array or reference. Excel Function: =ROWS(cellAddress)
Tags:
Parameters:
static method TRANSPOSE [line 653]
static array TRANSPOSE(
array
$matrixData)
|
|
TRANSPOSE
Tags:
Parameters:
static method VLOOKUP [line 689]
static mixed VLOOKUP(
lookup_value
$lookup_value, lookup_array
$lookup_array, index_number
$index_number, [not_exact_match
$not_exact_match = true])
|
|
VLOOKUP The VLOOKUP function searches for value in the left-most column of lookup_array and returns the value in the same row based on the index_number.
Tags:
Parameters:
|
|