Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello,
I try to do the following in Power Query:
I have a dataset which contains a text column and an other table (lookup table) with a list of words (around 200). If the text from my dataset contains one or more words from the lookup table i want to add those words in a new column (comma seperated)
Below an example of how I would like to have it.
I hope someone can help me with this, thanks in advance!!
Regards, Tiemen
Solved! Go to Solution.
@Anonymous
Please see attached file as well
@Anonymous
Please see attached file as well
Hi @Anonymous
See if this helps
First add a custom column
=Text.SplitAny([Text]," ?")
and then
Text.Combine( List.Select([Custom], each List.Contains(Lookup[Words],_,Comparer.OrdinalIgnoreCase)) , ",")
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
83 | |
78 | |
53 | |
39 | |
35 |
User | Count |
---|---|
92 | |
79 | |
51 | |
48 | |
45 |