# GT

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

true when the first number is greater

## signature

```
GT(value1, value2)
```

returns: `boolean`

## arguments

- value1: number — required
- value2: number — required

## examples

formula and result, asserted in the engine test suite.

| formula | result | with |
| --- | --- | --- |
| `=GT(5, 3)` | `true` | — |

## 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
- [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
- [IFS](https://deepcalc.com/functions/ifs.md) — checks multiple conditions, returns first match

## 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/gt