TableColumn
type TableColumn = { dataType?: TableColumnDataType; formula?: string; formulaIsArray?: boolean; name: string;};Properties
Section titled “Properties”| Property | Type | Description |
|---|---|---|
dataType? | TableColumnDataType | Describes the type of values found in the cells of the column, when a column contains only one data type. Default "unknown" |
formula? | string | If the column is a calculated column, then this field must include the formula used. |
formulaIsArray? | boolean | When true, the calculated column formula is an array formula. |
name | string | The column name. It must be unique among column names in the same table when compared in a case-insensitive manner. Must be non-empty. May contain white-space characters but not exclusively. |