> For the complete documentation index, see [llms.txt](https://docs.tomat.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tomat.ai/data-transformation/formulas/misc-functions/coalesce.md).

# Coalesce

Returns the first non-null value among its arguments, or null if all its arguments are null

```mathematica
Coalesce(null, 2, 3) → 2
Coalesce(null, null, 3) → 3
```

#### Inputs

`Coalesce(value, [value…])`

* `value...` - Values to check on NULLs
