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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Moomins
Frequent Visitor

Filter data based on list from another worksheet

Hi 

 

I have a worksheet "A" which contains extracted data using Power Query. The data has 5000 lines which I want to filter down to just 60 lines using data extracted from another worksheet "B".

 

A columns are CODE, Name, then more columns

B has only 1 column CODE listing the 60 values. Below is the code to extract the list ...

= Table.SelectRows(#"Removed Other Columns", each ([CODE] <> "" and [CODE] <> "Total"))

 

Your guidance much appreciated

1 ACCEPTED SOLUTION
serpiva64
Solution Sage
Solution Sage

Hi,

you can try this 2 options

- with merge (RightOuter)

serpiva64_0-1712331949230.png

- with List.Contains 

adding a custom column

= Table.SelectRows( Table.AddColumn(Source, "Custom", each List.Contains(B[Code], _[Code])), each [Custom]=true)

serpiva64_1-1712332088445.png

You can see it in the attached file

If this post isuseful to help you to solve your issue consider giving the post a thumbs up and accepting it as a solution !

 

View solution in original post

3 REPLIES 3
serpiva64
Solution Sage
Solution Sage

Hi,

you can try this 2 options

- with merge (RightOuter)

serpiva64_0-1712331949230.png

- with List.Contains 

adding a custom column

= Table.SelectRows( Table.AddColumn(Source, "Custom", each List.Contains(B[Code], _[Code])), each [Custom]=true)

serpiva64_1-1712332088445.png

You can see it in the attached file

If this post isuseful to help you to solve your issue consider giving the post a thumbs up and accepting it as a solution !

 

Thank you so much @serpiva64 

adudani
Super User
Super User

hi @Moomins ,

 

try using List.ContainsAny   after "Each"

Alternatively, would performing and inner join to filter out the relevant data be an option for your (less performant)

 

if none of this work, kindly provide a sample input and output dataset masking sensitive information

 

Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a Kudos 🙂
Kind Regards,
Avinash

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors