Reputation: 7
i have scenario where need to transpose every 3 rows to 3 columns in sequence in kettle: input is like below for example: every 3 records belongs to one user
UserID: A1234
UserName:Abcd
Group: Group1
UserID:B234
UserName:BCDE
Group:Group2
need to transpose like below in kettle enter image description here
UserID, UserName, Group
A1234,Abcd,Group1
B234,BCDE,Group2
any help is appreciated
Upvotes: 0
Views: 177
Reputation: 56
It is simple to achive this using Row Flattener
step.
The official document about this step is [here].(https://help.pentaho.com/Documentation/9.0/Products/Row_Flattener)
Upvotes: 1