<< Click to Display Table of Contents >>
Manual > Control Reference > Route > Route Methods >
Adds a row to a table array variable.
syntax
AddTableRow (
value1,
value2
)
Parameters
value1
Type:
value
The value to be added. Must be a two-dimensional array or empty (#NOTHING#).
The values to add. Must be a 1D or 2D array.
Explanation
The formula is to add value2 to value1.
Example
Adding a Record
var vData1 = c(c("Gourp01","Gourp02","Gourp03","Gourp04"), c(2,3,4,5)); var vData2 = c("Gourp05", 8); var vData = ::AddTableRow (vData1, vData2);
Adding multiple records
var vData1 = c(c("Gourp01","Gourp02","Gourp03","Gourp04"), c(2,3,4,5)); var vData2 = c(c("Gourp05","Gourp06"), c(8,9)); var vData = ::AddTableRow (vData1, vData2);
Supported
○
Script Action
Can be used in server script Ver2 actions
Browser script
Can be used in browser scripts
×
Calculation formula syntax
Can be used in expression syntax (e.g. bind format)
reference
AddTableRow
InsertTableRow
DelTableRow
ExchangeTableColRow
MergeValue