Functions Language

GetValueAt

The GetValueAt() function returns the value located at a specified row and column position in an array.


Syntax:

GetValueAt(Array, Column, Row)
  • In the Quintessence Editor (Studio) using Python language, use: Qx.GetValueAt()
 See parameter descriptions

ArrayThe input string to search.
ColumnThe column number to retrieve (1‑based index).
RowThe row number to retrieve (1‑based index).

Remarks:

  • GetValueAt() is an older function and is interchangeable with the Excel Index() function. It is recommended to use Index() instead of GetValueAt().

Examples:


The examples provided below are based on fictitious data for illustrative purposes only.

> Example 1: Return the value at a specific column and row


Range:

A111
B222
C333

Formula:

return := GetValueAt(Range, 2, 1);

Result:

B