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,
I have a Column A in a table A
| Column A |
| ABC, DEF |
And two other columns B and C in another Table B in power BI is
| Column B | Column C |
| ABC | OO |
| DEF | PP |
What i wanted to display in table A is
| Column A | Column D |
| ABC, DEF | OO,PP |
Solved! Go to Solution.
Hi @WTAS80486
You can add a custom column with below code in Table A.
Text.Combine(
List.Combine(
List.Transform(
Splitter.SplitTextByDelimiter(",")([Column A]),
each let pColumnA = _ in Table.SelectRows(#"Table B", each [Column B] = pColumnA)[Column C]
)
),
","
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @WTAS80486
You can add a custom column with below code in Table A.
Text.Combine(
List.Combine(
List.Transform(
Splitter.SplitTextByDelimiter(",")([Column A]),
each let pColumnA = _ in Table.SelectRows(#"Table B", each [Column B] = pColumnA)[Column C]
)
),
","
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!