BETWEEN
Determines if given value is between two boundary values
Last updated
Was this helpful?
Determines if given value is between two boundary values
Last updated
Was this helpful?
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
Value to assess
boundary 1
Boundary value
boundary 2
Boundary value
Outputs true
if value
is between specified values, outputs false
otherwise.