What It Does
- Groups rows by one or more columns
- Applies aggregation logic like Sum, Count, Average, Append, and more
- Lets you join multiple values into a single field using a defined separator
- Auto-generates clean output column names (e.g.
sum_revenue,append_names) - Returns a grouped dataset β perfect for summaries, deduplication, and reporting
π Getting Started

1
Add the Node
Drop in the Group Data node from the panel.
2
Pick Grouping Keys
Select one or more fields to group by β e.g.,
email, domain, rep, or tier.3
Define Aggregations
Choose a field to aggregate and how to combine it: Sum, Count, Max, Average, Append, etc.
4
Choose Separator (if using Append)
Select how to join values: comma, space, newline, or list.
5
Run the Node
Youβll get one row per group β with calculated metrics in the output.
Inputs
π οΈ Required Fields
-
Grouping Keys (β
)
One or more fields used to group your dataset.
Why it matters: This defines the level at which rows will be grouped β like account, region, or person. -
Aggregations (β
)
For each column you want to summarize, choose how it should be combined.
Why it matters: Defines whatβs returned for each group.
π’ Supported Aggregations
| Aggregation | Description | Separator Required? |
|---|---|---|
| Sum | Adds numeric values | β |
| Average | Returns mean value | β |
| Max | Returns the largest value | β |
| Min | Returns the smallest value | β |
| Count | Counts rows per group | β |
| Count Unique | Counts unique values in the column | β |
| Append | Joins all values into one | β |
Separator Options for Append
- Comma
- Space
- New Line
- Create List (returns values like
["a", "b", "c"])
Output
Youβll receive one row per group.- Grouping columns are preserved
- Aggregated columns are added as new fields (e.g.,
count_email,sum_revenue) - Original individual rows are not retained β this is a summary view

π Example Use Cases
| Scenario | Grouping Keys | Aggregations |
|---|---|---|
| Notes per email | email | Append of note_text, newline separator |
| Revenue by region | region | Sum of revenue, Count of deals |
| Most recent title by contact | person_id | Max of title |
| Count by domain + tier | domain, tier | Count of rows |
β¨ Pro Tips
β οΈ Important Considerations
π FAQ
Can I group by more than one field?
Can I group by more than one field?
Yes β select multiple columns from the dropdown.
Can I join text values into one field?
Can I join text values into one field?
Absolutely. Use Append and pick a separator like newline, comma, or list.
Do I need to name my output fields?
Do I need to name my output fields?
Nope! Weβll handle it for you with clean names like
sum_revenue and count_notes. Rename later if youβd like β no pressure.What if I forget to add aggregations?
What if I forget to add aggregations?
No agg, no action β the node canβt even configure without at least one aggregation. Youβll see a friendly reminder right away.
π° Pricing
The Group Data node is free β no credits required.
Group it. Summarize it. See the big picture β without digging through rows. ππ§