Data Summarizer Action Block
The Data Summarizer Action Block performs calculations on arrays of values including averages, sums, min/max detection, and unique counting.
No authentication required. All calculations run locally.
Supported Actions
Calculate Average
Computes the arithmetic mean of a list of numeric values.
Output: { "average": 25.5 }
Calculate Sum
Computes the total sum of a list of numeric values.
Output: { "sum": 102 }
Count Uniques
Counts the number of unique values in a list. Supports optional field filtering for object arrays.
Output: { "numUniques": 5 }
Find Min and Max
Returns the smallest and largest values from a list.
Output: { "min": 1, "max": 99 }
Configuration
- Values: JSON array of values (supports
{{variables}}). Example:[10, 20, 30, 40] - Fields (Count Uniques only): Optional field names to compare when values are objects.
Use Cases
- Aggregating survey or form responses
- Computing totals from sales or transaction data
- Finding outliers in numeric datasets
- Counting distinct entries in imported data