# Within Bounds
Grammar — min <= value <= max
Flags —Operator
Returns true if the Value parameter is in between the Min and Max parameters, or if the Value parameter is equal to either the Min or the Max parameter.
# Arguments
anynumber
— Valueanynumber
— Minanynumber
— Max
Returns — bool
((#PARAM(value) >= #PARAM(min)) && (#PARAM(value) <= #PARAM(max)))
# Related
Category: Logic / Comparisons
- Comparison
- And — macro
- Or — macro
- Not — macro
- Within Bounds
- Text Has Been Set
- And Or
- And Or Multiple
- Not
# Examples
— None found —