> For the complete documentation index, see [llms.txt](https://v5docs.keyfax.biz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://v5docs.keyfax.biz/reference/expression-reference/text-expressions/exists.md).

# Exists

Returns `False` when the databox value is empty or blank, and `True` when it holds anything at all.

| Expression | Databox value         | Result  |
| ---------- | --------------------- | ------- |
| `Exists`   | `The quick brown fox` | `True`  |
| `Exists`   | `0`                   | `True`  |
| `Exists`   | `1`                   | `True`  |
| `Exists`   | (empty)               | `False` |

Note that `0` exists. `Exists` asks whether there is a value, not whether the value means anything.

Use it to drive a condition — see [Logical expressions](/reference/expression-reference/logical-expressions.md).
