Skip to main content

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.

The Unpivot transformation transposes columns into rows, converting multiple columns into key-value pairs.

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

1
Select the columns to unpivot — these become row values.
2
Select the columns to keep as-is (passthrough fields).
3
Name the output field for column names (e.g., “attribute”).
4
Name the output field for values (e.g., “value”).

Example

Input: Region, Q1, Q2, Q3, Q4. Unpivot Q1—Q4. Result: Region, Quarter, Revenue — one row per region/quarter combination.
Last modified on April 20, 2026