Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have a similar table as the table below where I have an id column and a Task column. Each ID can have multiple pending tasks.
ID Task
1 Copy
1 Paste
2 Copy
3 Erase
1 Erase
I want to combine the task in one column in power query. Like the table below. How can I do this
ID Task
1 Copy, Paste, Erase
2 Copy
3 Erase
Thank you in advance!
Solved! Go to Solution.
group by ID, and concatenate the task value
=Table.Group(PreviousStepName,"ID",{"Task",each Text.Combine([Task],",")})
group by ID, and concatenate the task value
=Table.Group(PreviousStepName,"ID",{"Task",each Text.Combine([Task],",")})
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 7 | |
| 4 | |
| 3 |