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

# Any

Selects an arbitrary element from the given column.

```mathematica
Any(column) → any_value
```

#### Inputs

* `column` - The column from which to select an arbitrary element.

**Example**

```
Any([1, 2, 3, 4]) → 1
Any(["Apple", "Banana", "Cherry"]) → "Apple"
Any([10.5, 20.3, 30.1]) → 10.5
```
