Appearance
Boolean Columns
Some columns use boolean values, meaning they only have two possible states.
Examples include:
- True or false
- Yes or no
- On or off
For CSV imports, we recommend using the lowercase values true and false to represent boolean values. However, the system accepts the following alternatives:
| True | False |
|---|---|
| true | false |
| t | f |
| 1 | 0 |
| on | off |
| yes | no |