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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi guys...
I'm trying to extract all data from this column keeping all data in one column only, separated by comma.
Solved! Go to Solution.
Hello @Williamspsouza ,
We've added a custom column to meet your requirements.
if [Data] is table
then
Text.Combine(
List.Transform(
List.Combine(Table.ToRows([Data]))
, each Text.From(_)
)
,","
)
else [Data]
And we can get the result this way,
All inquiries are here:
let
Source = Table.FromRows(
{
{1, null},
{2, "QA"},
{3, Table.FromRows({{"Camunda"}, {"Salesforce"}} ,{"Element:Text"})},
{4, null},
{5, Table.FromRows({{"A",1}, {"B",2}, {"C",4}} ,{"Element:Text2","AnotherID"})}
}
,{"ID", "Data"}),
#"Added Custom" = Table.AddColumn(Source, "Custom", each if [Data] is table
then
Text.Combine(
List.Transform(
List.Combine(Table.ToRows([Data]))
, each Text.From(_)
)
,","
)
else [Data])
in
#"Added Custom"
If you don't meet your requirement, could you show the expected exact result based on the table we shared?
BTW, pbix as attached.
Best regards
Hi @Anonymous ,
How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?
Best regards,
Hello @Williamspsouza ,
We've added a custom column to meet your requirements.
if [Data] is table
then
Text.Combine(
List.Transform(
List.Combine(Table.ToRows([Data]))
, each Text.From(_)
)
,","
)
else [Data]
And we can get the result this way,
All inquiries are here:
let
Source = Table.FromRows(
{
{1, null},
{2, "QA"},
{3, Table.FromRows({{"Camunda"}, {"Salesforce"}} ,{"Element:Text"})},
{4, null},
{5, Table.FromRows({{"A",1}, {"B",2}, {"C",4}} ,{"Element:Text2","AnotherID"})}
}
,{"ID", "Data"}),
#"Added Custom" = Table.AddColumn(Source, "Custom", each if [Data] is table
then
Text.Combine(
List.Transform(
List.Combine(Table.ToRows([Data]))
, each Text.From(_)
)
,","
)
else [Data])
in
#"Added Custom"
If you don't meet your requirement, could you show the expected exact result based on the table we shared?
BTW, pbix as attached.
Best regards
Hi @Anonymous ,
Could you please share a sample data to me?
So I can try to solve it in my desktop first to make sure my way is working.
Thanks
Aiolos Zhao
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 57 | |
| 43 | |
| 41 | |
| 21 | |
| 17 |