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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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