# Column types
Data tables support columns of the following data types:
Column type | Description | Limit | Example |
---|---|---|---|
Short text | Text field used to store small strings or textual data. Typically, this data type is for names, short descriptions, status codes, or small identifiers. | Maximum of 10,000 characters. Sorting and filtering is supported for only the first 756 characters. |
|
Long text | Multi-line text field. Typically, this data type is for large amounts of text, such as descriptions, comments, or any large block of text. | Maximum of 10,000 characters. Sorting and filtering is supported for only the first 756 characters. |
|
Decimal | IEEE-754 floating-point numbers. Commonly used for precise calculations involving fractional numbers, such as percentages or scientific measurements. | Floating-point numbers do not enforce a fixed number of decimal places. Precision is determined by the number’s range. For example, smaller values can represent more decimal places accurately, while larger values lose precision due to spacing between representable values. |
|
Boolean | A true/false value. | NA |
|
Date | Calendar dates (such as, year, month, and day) without time information. Useful for fields such as birthdates, event dates, or transaction dates. Date columns inherit the timezone and date and time format of your workspace. This means that the exact date format can vary, depending on your settings. | Supports a range of dates between 262,145 BCE and 262,143 CE. |
|
DateTime | Date and time (including hours, minutes, seconds). Used to track exact moments of events, transactions, or logs. DateTime columns inherit the timezone and date and time format of your workspace. This means that the exact date and time format can vary, depending on your settings. | Follows RFC 3339 protocol. |
|
File | Allows you to upload or download files to/from your data tables. | Maximum file size: 100 MB . File names can have up to 255 characters. | NA |
Link to a table | Display data from a different data table in your workspace. Choose a Linked data table to select another data table to link to your current table and Display data from to determine which column from the data table you have selected displays as a dropdown. | Each data table can link to a maximum of 20 data tables. Data tables supports linking to short text and long text column types. | NA |
Multi-value | This column supports storing multiple values in a single cell. Multi-value columns do not support nulls, empty strings, or duplicate values. Sorting columns is not supported. Supported value types include short Text, Integer, Decimal, Date, DateTime, and Link to a table. | Each data table can have a maximum of 20 multi-value columns. Each cell within a multi-value column can store up to 20 values. | NA |
# Available operands
The operands you can use to filter your data table vary based on your selected column's data type:
Short text
The following operands are available:
- Equals
- Is not equal to
- Starts with
- Is null
- Is not null
Long text
The following operands are available:
- Equals
- Is not equal to
- Starts with
- Is null
- Is not null
Integer
The following operands are available:
- Equals
- Is not equal to
- Is less than
- Is greater than
- Is less or equals
- Is greater or equals
- Is null
- Is not null
Decimal
The following operands are available:
- Equals
- Is not equal to
- Is less than
- Is greater than
- Is less or equals
- Is greater or equals
- Is null
- Is not null
Boolean
The following operands are available:
- Is true
- Is false
- Is null
- Is not null
Date
The following operands are available:
- Equals
- Is not equal to
- Is before
- Is after
- Is on or before
- Is on or after
- Is null
- Is not null
DateTime
The following operands are available:
- Equals
- Is not equal to
- Is before
- Is after
- Is on or before
- Is on or after
- Is null
- Is not null
Link to a table
The following operands are available:
- Equals
- Is not equal to
- In
- Is null
- Is not null
File
The following operands are available:
- Equals
- Is not equal to
- Is null
- Is not null
Multi-value
The following operands are available:
- Contains
- Is not null
- Is null
Last updated: 7/22/2025, 10:51:52 PM