Aggregation, what a classic. Aggregating your data is a landmark trait for any data steward, data wrangler, or data analyst. In ET1, you can easily aggregate your data.
The Power of Grouping with the Group By Node
Aggregations turn a sea of numbers into meaningful insights.

While consulting with The Nielsen Company, the product manager and I looked at the RAW data together. The issue, the data was too big. I pointed out the data is “split second.” That means they are tracking every second that it happens.
So I asked, “can we group by month?”
The answer was yes, they only cared about monthly data.
This question, “can we group,” reduced the data by 99%, reducing big data costs. So by writing a Group By in the SQL, I was able to save The Nielsen Company 99% of their downtime when waiting for their dashboards to load.
Knowing how Group By works is important. This software will teach you how Group By works!
The Group By Node is the foundation of your aggregation
This lets you split the information across a non-aggregating column, otherwise you’re creating a KPI.
Create your KPI, understand the number of records, and various ways to aggregate.
By default aggregation starts with count_rows to enable faster developer cycles.

🔢 The Essential Aggregations
- Sum
- Adds up all values
- Perfect for: Sales totals, revenue, quantities
- Average (Mean)
- Finds the middle ground
- Great for: Test scores, ratings, temperatures
- Minimum/Maximum
- Spot the extremes
- Use for: Price ranges, performance metrics, outliers
- Count
- Simple but powerful
- Tells you: How many? How often?
- Number of records
- by default, you will get the “number of records”
- you’re welcome!
- Count Distinct?
- Well, count distinct is nice but…
- This really means your data is duplicated!
🎯 Group By: The Game Changer
The real magic happens when you combine these with Group By:
- Sales by Region: Group by
Region
, AggregateÂSum ( Revenue
)
Real-World Examples
How would you aggregate in the real world?
E-commerce
- Total sales per city
- Average ticket sales per state
- Average order value by customer segment
Education
- Pass rates by subject
- Sum of students per day
- Average of students per month per class
Finance
- Monthly expenses by category
- Highest spending customers
Pro Tips
- Start Simple – Try one aggregation at a time
- Clean First – Make sure it’s just numbers or you’re not aggregating
- Check Your Groups – Make sure your groups make sense, very powerful for data reduction
Aggregation needs to be simple. Let us know if it’s not.
Return to ET1 Overview to learn more.