Expression Assistant - Checking if Value is between two numbers

Is there a way to check if a value is between two values?

[ColumnsName]>100 works.

Is there a way to do something like this:

200>[ColumnsName]>100

or

[ColumnsName]>100 && [ColumnsName]<200

Thank you.

0 3 931
3 REPLIES 3

Iโ€™d go with AND() function:

AND([ColumnsName]>100, [ColumnsName]<200)

Steve
Platinum 4
Platinum 4

Thank you for your reply, With the help of perissf, I found the section of the documentation I was looking for.

For those who read this in the future, the AND() function is a " Composition Operators" and those are talked about at this URL: Yes/No Expressions | AppSheet Help Center

AND({condition 1},{condition 2},{condition 3},โ€ฆ,{condition n})

If all the conditions in the AND expression are true, then the result of the expression will be TRUE (Yes), if any of the conditions are not true, the result will be FALSE (No). Separate each condition with a comma. Each condition is an expression in itself, so be aware of how the expressions are nested.

Top Labels in this Space