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! Learn more
Hi Team,
I have a table with countries & savings forecast. I need to split it into individual rows and map the values int eh forecast & actuals table withteh corresponding country names. Can you please help me out with this?
What my actual data looks like
How my final result should look like.
Thanks,
Manny
Solved! Go to Solution.
@Anonymous , refer this blog for the solution
https://prathy.com/2018/02/split-multiple-columns-rows-powerquery/
Hello @Anonymous
Add As custom column
1> Text.Split([Country] , ",")
2> Text.Split([Cost Savings Forecast] , ",")
3> Text.Split([Cost Savings Actual] , ",")
after delete original column then ADD Custom Column
Table.FromColumns({[Country.1],[Cost Savings Forecast.1],[Cost Savings Actual.1]})
before Expanded Table Delete Created Custome Column And then Expand Table column end you get your result .
Thank you ,
Mahesh patel
@Anonymous
Hello @Anonymous
Add As custom column
1> Text.Split([Country] , ",")
2> Text.Split([Cost Savings Forecast] , ",")
3> Text.Split([Cost Savings Actual] , ",")
after delete original column then ADD Custom Column
Table.FromColumns({[Country.1],[Cost Savings Forecast.1],[Cost Savings Actual.1]})
before Expanded Table Delete Created Custome Column And then Expand Table column end you get your result .
Thank you ,
Mahesh patel
Thanks Mahesh. The solution worked.
This is what I was looking for earlier. I have been trying different queries, but eventually none of them worked
@Anonymous , refer this blog for the solution
https://prathy.com/2018/02/split-multiple-columns-rows-powerquery/
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.