This operator aggregates multiple columns and/or rows into a single cell.

Parameters:
See dedicated page for more information.
aggregateInOneCell is a scripted action. Embedded code is accessible and customizable through this tab.
See dedicated page for more information.
This operator aggregates multiple columns and/or rows into a single cell.
\t)\r)You can choose which columns to include in the aggregation, and optionally compute the maximum of a specific column within those inputs.
Inline Table:
| ID | Name | Score1 | Score2 | Score3 |
|---|---|---|---|---|
| 1 | Alice | 8 | 7 | 9 |
| 2 | Bob | 6 | 5 | 7 |
| 3 | Carole | 9 | 8 | 10 |
Config:
idAgg: Score1, Score2, Score3idMax: (not set)addNames: falseOutput:

Explanation:
Each row's Score1, Score2, and Score3 values are combined into one cell. Column names are not included.
Config:
idAgg: Score1, Score2, Score3idMax: Score1addNames: falseOutput:

Explanation:
Same as Case 1, but a new column (MaxValue) shows the maximum value in Score1.
Config:
idAgg: ID, Name, Score1, Score2, Score3idMax: (not set)addNames: trueOutput:

Explanation:
All selected columns are aggregated, and each value is prefixed by its column name.
Notes
idMaxcomputes the maximum across rows, only from the selected column (e.g.,Score1).- Aggregated output is formatted using tab-separated values inside one cell.
- This action is useful for flattening datasets, exporting structured summaries, or building compact row representations.
