CheckBox Field
The CheckBox Field provides a simple Yes/No decision.
Its value is stored as a Boolean — either true
or false
.
Properties
Configure the following properties when adding a CheckBox field:
- Field Title – The label shown on forms.
- Field ID – The unique identifier used internally and in expressions.
This makes it quick and straightforward to include Yes/No decisions in your solution.
Field Settings
For general settings such as Title, ID, Required, Description, and Visibility, see Basic Field Settings.
Computed Value
The Computed Value option allows you to set a CheckBox state dynamically through expressions:
- Use
true
orfalse
directly. - Reference another field (e.g., check if a value exists).
- Apply logical expressions (e.g.,
Amount > 100
→ checked).
This enables automation of Yes/No decisions within workflows and forms.