GRIDCOL

This function will retrieve the value in the COLUMN of the currently selected GRID row.

GRIDCOL(Column)


PARAMETERS

Column

The grid column you wish to retrieve the value from.  Columns are numbered starting with 0.

EXAMPLE:

To return the value in the FIRST column of a grid containing 4 columns, and store that value in a memory variable called TEMP: 
SETMEM(TEMP//GRIDCOL(0))

To return the value in the LAST column of a grid containing 4 columns, and store that value in a memory variable called TEMP: 
SETMEM(TEMP//
GRIDCOL(3))