The Unpivot transformation transposes columns into rows, converting multiple columns into key-value pairs.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
- The reverse of Pivot — converts columns back to rows
- Useful for normalizing wide tables into long format
- Produces two output fields: one for the column name and one for the value
Configuration
Example
Input:Region, Q1, Q2, Q3, Q4.
Unpivot Q1—Q4.
Result: Region, Quarter, Revenue — one row per region/quarter combination.