Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Power BI community
I have a table with leader ids. Sometimes a row has a single id and othertimes it multiple ids split by ","
Like this.
I want to add a new row each time I have a "," so no row has more than a single number.
Is this possible?
Solved! Go to Solution.
split column by delimiter, using "," as delimeter. Click the 'To rows' option
@ThomasWeppler add a new column with Text.Split([Column],',') and then exapnd to new rows
Thanks @smpa01
I wnet with @HotChilli solution, but I am sure your solution would have worked as well 🙂
split column by delimiter, using "," as delimeter. Click the 'To rows' option
Thanks @HotChilli
Your solution was super easy to impliment and worked like a charm.