Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Solved! Go to Solution.
I am not 100% clear about your question. Id you already have sat fruit list then the solution i am suggesting it will work, else need to check.
here is my approach to solve problem. I am assuming you have list of fruits for extracting from long sentence.
Here is the custom column:
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
Check for more intersing solution here: www.youtube.com/@Howtosolveprobem
Regards
This is the problem I am having
NewColumn =
VAR Sentence = 'Table'[Sentence]
VAR WordList =
SELECTCOLUMNS(
UNION(
ROW("Word", "rffrfvr"),
ROW("Word", "frefed"),
ROW("Word", "frefer")
-- Add more words here as needed
),
"Word", [Word]
)
VAR FoundWords =
FILTER(
WordList,
CONTAINSSTRING(Sentence, [Word])
)
RETURN
CONCATENATEX(FoundWords, [Word], ", ")
try this one hope this shold work if you have more number of word to check
I see what you mean. I'm having an error problem when adding word4, can you help me?
I am not 100% clear about your question. Id you already have sat fruit list then the solution i am suggesting it will work, else need to check.
here is my approach to solve problem. I am assuming you have list of fruits for extracting from long sentence.
Here is the custom column:
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
Check for more intersing solution here: www.youtube.com/@Howtosolveprobem
Regards
Thanks. exactly what I wanted, but I need to increase Word 4, Word 5,.........how should I use the next formula to append to the formula you made
It would be same you jest need to aad correct words. That y i have only send one formula since change the words and resuse to create new.
Regards
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |