logical
Syntax:
BooleanColumn
Context Filtering: ✓ Yes
Parameters
Allowed Column Types: INT, FLOAT, DECIMAL, DATE, DATETIME
Validation
- Minimum parameters: 3
- Maximum parameters: 3
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
logical
Syntax:
Between([value_column], lower_bound, upper_bound)
BooleanColumn
Context Filtering: ✓ Yes
| Name | Type | Required | Description |
|---|---|---|---|
value | number|date|datetime|column | ✓ Yes | The input value or column containing the values to check. |
lower bound | number|date|datetime | ✓ Yes | The lower bound of the range to check. |
upper bound | number|date|datetime | ✓ Yes | The upper bound of the range to check. |
Between([Invoice Date], MakeDate(2015, 1, 1), MakeDate(2020, 1, 1))
Between([Sale Date], DateAdd("day", -7, Now()), Now())