Hi,
I’m fairly new to Clover and I’m looking for some help with choosing which component to do a certain transformation.
All of the data is coming from a single excel file (one input)
Sample data:
1|a|-|-
1|-|b|-
1|-|-|c
2|d|-|-
2|-|-|e
2|-|f|-
3|-|-|g
3|h|-|-
3|-|i|-
I am looking to merge these rows based on their row id (assume first column is row id)
Desired output:
1|a|b|c
2|d|e|f
3|g|h|i
Any help is much appreciated.
Cheers