Lookup and Reference Functions
- 3 minutes to read
This document describes lookup and reference functions supported by the WPF Spreadsheet control.
Name | Description | Syntax |
---|---|---|
Returns a text reference to a worksheet cell. | ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text]) | |
Returns the number of areas in a reference. An area is a contiguous cell range or a single cell. | AREAS(reference) | |
Selects a value from a list based on its index number. | CHOOSE(index_num, value1, [value2], …) | |
Returns the column number of a given cell reference or the number of the current column if no reference is supplied. | COLUMN([reference]) | |
Returns the number of columns in an array or reference. | COLUMNS(array) | |
Returns a formula as a string. | FORMULATEXT(reference) | |
Returns data stored in a PivotTable report. | GETPIVOTDATA(data_field, pivot_table, [field1, item1, field2, item2], …) | |
Searches for a value in the first table row, and returns a value in the same column from the specified row. | HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup]) | |
Creates a hyperlink. | HYPERLINK(link_location,friendly_name) | |
Uses the row and column indexes to select a value from a reference or array. | INDEX(array, row_num, [column_num]) | |
Returns a reference specified by a text value. | INDIRECT(ref_text, [a1]) | |
Looks in a one-row or one-column range for a value and returns a value from the same position in a second one-row or one-column range. | Vector form: LOOKUP(lookup_value, lookup_vector, [result_vector]) ‘lookup_value’ is the value to look up in the ‘lookup_vector’ single column (single row) range, ‘lookup_vector’ is a list of data (single column or row range) used to search for the lookup_value; ‘result_vector’ is a range of the same size as ‘lookup_vector’. The function returns the value in ‘result_vector’ at the position where the match is found in ‘lookup_vector’. Array form: LOOKUP(lookup_value, array) ‘lookup_value’ is the value that you wish to look up in the specified array and ‘array’ is a two-dimensional array of data. The first column (or row) of an array will be used to search for the ‘lookup_value’, and the value in the corresponding last column (or row) will be returned. | |
Searches for a specified item in a cell range and returns the relative position of that item in the range. | MATCH(lookup_value, lookup_array, [match_type]) | |
Returns a reference to a range that is a specified number of rows and columns from a cell or cell range. | OFFSET(reference, rows, cols, [height], [width]) | |
Returns the row number of a given cell reference or the number of the current row if no reference is supplied. | ROW([reference]) | |
Returns the number of rows in a reference or array. | ROWS(array) | |
Reduces many values to a single value. This function works as follows:
The SINGLE function was originally introduced in Excel with dynamic arrays, but later was replaced with the @ operator. | SINGLE(value) | |
Returns a vertical range of cells as a horizontal range, or vice versa. | TRANSPOSE(array) | |
Looks up a value in the first column of a table, and returns a value in the same row from a column you specify. | VLOOKUP( lookup_value, table_array, col_index_num, [range_lookup] ) |