Skip to content

Field types

The type you give a field decides what its column can hold and how it behaves: a date field shows a calendar, a money field carries a currency, a dropdown only accepts choices from your list. Picking the right type up front keeps your data clean and makes filtering and sorting work the way you’d expect. Here’s the full menu.

TypeHoldsReach for it when…
TextWords — single-line or multi-line…you need names, notes, descriptions, links.
IntegerWhole numbers…you’re counting things: quantity, headcount, priority.
FloatDecimal numbers…you need fractions: weight, hours, a rating.
BooleanTrue / false…it’s a simple yes/no: “Contacted?”, “In stock?”.
DateA calendar date…only the day matters: due date, start date.
DateTimeA date and time…the time of day matters: a meeting, a deadline.
MoneyAn amount with a currency…you’re tracking value: deal size, price, budget.
EnumOne choice from a fixed list…there’s a set of options: Stage, Status, Category.
AttachmentOne or more files…rows carry documents, images, or contracts.

Beyond its type, every field has a few settings:

PropertyWhat it does
NameThe column label everyone sees.
DescriptionOptional note explaining what the field is for.
RequiredWhen on, an entry can’t be saved with this field empty.
ArrayWhen on, the cell can hold multiple values (several files, several tags).
PositionWhere the column sits, left to right. Drag to reorder.

A simple “Sales Leads” database might use:

Company → Text (required)
Contact email → Text
Stage → Enum (New, Contacted, Demo, Won, Lost)
Deal size → Money (USD)
Next step on → Date
Documents → Attachment (array)

Clean types here mean you can later filter to Stage = Demo, sort by Deal size, and never wrestle with inconsistent data.