i have data like this :
And with magic ETL want to concatenate contents of column C for same values in Column A.
Desired result:
Result with Group by's concatenate
Use the group by tile, set Member Number as the Grouping field and then select Add Formula and use something like the following: GROUP_CONCAT(DISTINCT CASE WHEN ` 3rd Party` IS NOT NULL THEN ` 3rd Party` END)
You likely have some blank spaces in your 3rd party field. To handle these you can ignore empty fields:
GROUP_CONCAT(DISTINCT CASE WHEN TRIM(COALESCE(`3rd Party`, '')) <> '' THEN ` 3rd Party` END)
Thanks @GrantSmith and @ColemenWilson for the solutions.