Home Search

DriveWorks Solo 21
TableColumn

Send Feedback

TableColumn

Constructs a table containing a single column with a blank header, followed by the given values.

Syntax

TableColumn(Collection of Values As String)

Where:

Collection of Values are the values to present as rows in the table, where each value is separated by a comma.

Examples

RuleMeaning
TableColumn("Red","Green","Blue")Will return a single column array, with a blank header, with the values Red, Green and Blue on separate rows.

Example Outcome

Header Row (blank)..
Row 1..Red
Row 2..Green
Row 3..Blue

DriveWorks will return the table above as an array, which will look like:

Table returned as an Array
{"";"Red";"Green";"Blue"}