BETWEEN
Determines if given value is between two boundary values
Last updated
Determines if given value is between two boundary values
Last updated
BETWEEN( value
, boundary 1
, boundary 2
)
Returns true
if value
is between two specified values, returns false
otherwise.
Works on numeric values, strings, and dates.
Argument | Description |
| Value to assess |
| Boundary value |
| Boundary value |
Outputs true
if value
is between specified values, outputs false
otherwise.