Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
sundayDriver
Employee
Employee

Get the rows that contain any of the values from a list

Let's say that we have the following example:

Input
I want to eat; I want a big apple;
You are fine; I'm not hungry;
It's a nice day;
I'm so sleepy

and a keywords list (I can convert it to a table if needed)

Keywords
It's a nice day
hungry

 

In this example I would like to return:

Results
You are fine; I'm not hungry; 
It's a nice day;

 

I am familiar with search but I couldn't have a list as an input.

 

Thanks!

Lydia

1 ACCEPTED SOLUTION
camargos88
Community Champion
Community Champion

Hi @sundayDriver ,

 

You can write this m code:

let _item = [Column1] in
if List.Count(List.Select(tb_Keywords[Column1],
each Text.Contains(_item, _))) > 0 then 1 else 0

 

Capture.PNG



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



View solution in original post

1 REPLY 1
camargos88
Community Champion
Community Champion

Hi @sundayDriver ,

 

You can write this m code:

let _item = [Column1] in
if List.Count(List.Select(tb_Keywords[Column1],
each Text.Contains(_item, _))) > 0 then 1 else 0

 

Capture.PNG



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.