# ISBETWEEN

logical · from google sheets · no excel equivalent · sheets: not yet compared

true when a number lies within a range

## signature

```
ISBETWEEN(value, low, high, [low_inclusive], [high_inclusive])
```

returns: `boolean`

## arguments

- value: number — required
- low: number — required
- high: number — required
- low_inclusive: boolean — optional, defaults to 1
- high_inclusive: boolean — optional, defaults to 1

## examples

formula and result, asserted in the engine test suite.

| formula | result | with |
| --- | --- | --- |
| `=ISBETWEEN(5, 1, 10)` | `true` | — |

## errors

error values observed from the engine — each with a call that produces it.

| error | produced by |
| --- | --- |
| `#VALUE!` | `=ISBETWEEN("alpha", 2, 2)` |

## related

- [AND](https://deepcalc.com/functions/and.md) — returns TRUE if all arguments are true
- [EQ](https://deepcalc.com/functions/eq.md) — true when two values are equal
- [FALSE](https://deepcalc.com/functions/false.md) — returns the logical value FALSE
- [GT](https://deepcalc.com/functions/gt.md) — true when the first number is greater
- [GTE](https://deepcalc.com/functions/gte.md) — true when the first number is greater or equal
- [IF](https://deepcalc.com/functions/if.md) — returns one value if condition is true, another if false
- [IFERROR](https://deepcalc.com/functions/iferror.md) — returns value if no error, otherwise alternate
- [IFNA](https://deepcalc.com/functions/ifna.md) — returns value if not #N/A, otherwise alternate

## navigate

- [all logical functions](https://deepcalc.com/functions/logical-functions.md)
- [function index](https://deepcalc.com/functions.md) — all 600 functions
- [error values](https://deepcalc.com/errors.md) · [concepts](https://deepcalc.com/concepts.md) · [limits](https://deepcalc.com/limits.md)
- [everything in one file](https://deepcalc.com/llms-full.txt)

source: https://deepcalc.com/functions/isbetween