Skip to content

TableColumn

type TableColumn = {
dataType?: TableColumnDataType;
formula?: string;
formulaIsArray?: boolean;
name: string;
};
PropertyTypeDescription
dataType?TableColumnDataTypeDescribes the type of values found in the cells of the column, when a column contains only one data type. Default "unknown"
formula?stringIf the column is a calculated column, then this field must include the formula used.
formulaIsArray?booleanWhen true, the calculated column formula is an array formula.
namestringThe 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.