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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
sundayDriver
Microsoft Employee
Microsoft 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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.