Welcome to Microsoft Q&A platform and thanks for posting your query here.
As per my understanding , you are trying to perform data transformation using mapping dataflow.
Kindly follow the below steps to achieve the above requirement:
- Add source transformation pointing to the input file.
- Add aggregate transformation to group by the number column.
Data preview:
- Add derived column transformation and use below expression to convert array objects ["A","B","C"] into A|B|C :
ltrim(toString(reduce(Code,'', #acc + '|'+ #item, #result)),'|')
Data preview:
Hope it helps. Kindly accept the answer by clicking on Accept answer
button. Thankyou