# aggregateColumnValue

# Function: aggregateColumnValue()

```ts
function aggregateColumnValue<TFeatures, TData>(args): unknown;
```

Defined in: [features/row-aggregation/rowAggregationFeature.utils.ts:307](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/row-aggregation/rowAggregationFeature.utils.ts#L307)

Executes every configured aggregation over a depth-selected row frontier.

## Type Parameters

### TFeatures

`TFeatures` *extends* [`TableFeatures`](../../index/interfaces/TableFeatures.md)

### TData

`TData` *extends* [`RowData`](../../index/type-aliases/RowData.md)

## Parameters

### args

#### column

[`Column`](../../index/type-aliases/Column.md)\<`TFeatures`, `TData`, `unknown`\>

#### groupingRow?

[`Row`](../../index/type-aliases/Row.md)\<`TFeatures`, `TData`\>

#### maxDepth?

`number`

#### rows

readonly [`Row`](../../index/type-aliases/Row.md)\<`TFeatures`, `TData`\>[]

#### subRows?

readonly [`Row`](../../index/type-aliases/Row.md)\<`TFeatures`, `TData`\>[]

#### uniqueRows?

`boolean`

Marks `rows` as distinct nodes of a single row tree (rows the table's own
row models produced), enabling frontier selection without the
duplicate-id guard. Caller-supplied row arrays must omit this.

## Returns

`unknown`
