> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anlytic.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ArrayAgg

Returns an array of all non-null values in the specified column, preserving the input order.

**Category:** `aggregate`

**Syntax:**

```
ArrayAgg([column])
```

**Returns:** `ArrayColumn`

**Context Filtering:** ✗ No

## Parameters

| Name     | Type     | Required | Description                                           |
| -------- | -------- | -------- | ----------------------------------------------------- |
| `column` | `column` | ✓ Yes    | The column whose values are aggregated into an array. |

## Validation

* Minimum parameters: 1
* Maximum parameters: 1

## Examples

```
ArrayAgg([Score])
```

Returns an array of all Score values.
