QuerySetcell()

Sets the given column within a query with the value at the given row, or the last row if not specified

Usage

BOOLEAN = QuerySetcell( query, column, value, row )
Argument Summary
query query
column column
value value
row row number - defaults to the last one [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

QuerySetcell(
   query=?, 
   column=?, 
   value=?, 
   row=?
);

Supports passing parameters as a structure using ArgumentCollection:

QuerySetcell( ArgumentCollection={
   query : ?, 
   column : ?, 
   value : ?, 
   row : ?
} );