# OR

logical · from excel · excel: not yet compared · sheets: not yet compared

returns TRUE if any argument is true

## signature

```
OR(logical…)
```

returns: `boolean`

## arguments

- logical: boolean — required, repeatable

## examples

formula and result, asserted in the engine test suite.

| formula | result | with |
| --- | --- | --- |
| `=OR(A1>5, B1<10)` | `true` | A1=10, B1=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/or