Forum Discussion
Find specific word within a text cell
- 4 years ago
Hello there KristofferAJ ! You can use the following:
Find word = IF ( CONTAINSSTRING ( 'Your_Table'[Your_column], "*app*" ), "Yes", "No" )Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
Hi, this is great and does the job! - let's say that I want it to look for multiple words, like orange also? can that be built in?
Find word =
IF ( CONTAINSSTRING ( 'Your_Table'[Your_column], "*app*" ), "Yes", "No" )
OR
( CONTAINSSTRING ( 'Your_Table'[Your_column], "*oran*" ), "Yes", "No"
Hello there KristofferAJ ! You can simply do:
Find word =
IF (
OR (
CONTAINSSTRING ( 'Your_Table'[Your_column], "*app*" ),
CONTAINSSTRING ( 'Your_Table'[Your_column], "*oran*" )
),
"Yes",
"No"
)For additional help, please @ me in your reply!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes