OpenDocument / Microsoft Excel compatible function.
As Fireworkz INDEX
spreadsheet function but with different parameter list order.
ODF.INDEX( data:Range or Array, row:Integer, column:Integer )
Returns the element of the data range of cells (or array) specified by the row and column parameters.
Row and column numbers start at 1.
If the row number is zero, the whole of the specified column is returned.
If the column number is zero, the whole of the specified row is returned.
Example:
ODF.INDEX(B1:D20, 3, 2)
returns C3
.