Skip to content

Split and Fold Columns

Description

This activity splits a column’s values into multiple rows based on a specified separator. The original data in other columns is duplicated across the new rows.

Input

Data Only

Output

Transformed Data

Configuration Fields

  • Column To Split Specifies the column whose values should be split and expanded into multiple rows.
  • Separator Defines the delimiter used to split the column values.

Sample Input

IDNameTags
101JohnRed,Blue,Green
102AliceYellow,Orange
103MarkBlack
104EmmaWhite,Gray,Silver
105BobPink

Sample Configuration

alt text

Sample Output

IDNameTags
101JohnRed
101JohnBlue
101JohnGreen
102AliceYellow
102AliceOrange
103MarkBlack
104EmmaWhite
104EmmaGray
104EmmaSilver
105BobPink