row-column-value
Returns the value of a datatable column at a specified row
Returns the value of a datatable column at a specified row.
Arguments
Inputs:
data
: The datatable to be searched.
row
: The one-based index of the row to be selected. Defaults to 1
(first row).
column
: The name of the column to be selected. Defaults to the first column.
Output:
value
: The value of the column in the specified row if the datatable is not empty and the column is found; otherwise, null
is returned.
Last updated