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
Anonymous
Not applicable

Power Query filtering many values

So I know what with the following script I could remove from "Cost Center" column all the value that are "aaaa", "bbbb" or "cccc" but what about if I had to remove more values like  50 that I already have set in a list in power query o maybe a column from another data set..

I could not find the proper script

 

Table.SelectRows(#"", each ([Cost Center] <> "aaaa" and [Cost Center] <> "bbbb" and [Cost Center] <> "cccc"))

 

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

You could use List.Contains.

 

each not List.Contains(ListOfValues,[Cost Center])

 

where ListOfValues can reference an existing Table[Column] or List.

View solution in original post

2 REPLIES 2
AlexisOlson
Super User
Super User

You could use List.Contains.

 

each not List.Contains(ListOfValues,[Cost Center])

 

where ListOfValues can reference an existing Table[Column] or List.

Anonymous
Not applicable

Hi, How should I write the name of the column that is a different table? and whow should I write it if there was a list?

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.