The Pivot transformation transposes rows into columns, converting unique values from one field into separate output columns.Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Overview
- Converts row-level values into column headers
- Requires a group-by field, a pivot field (whose values become columns), and a value field
- Applies an aggregation function when multiple values exist for the same group/pivot combination
Configuration
Example
Input with fields:Region, Quarter, Revenue.
Pivot on Quarter, group by Region, aggregate Revenue with SUM.
Result: one row per Region with columns Q1, Q2, Q3, Q4 containing revenue totals.