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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
BIXL
Resolver I
Resolver I

convert sql "in" statement to power query filter code

Hi all,

I have a sql statment that has where clouse that uses the "in" statement that has a large number of elements in it

like :

select col1,col2 

fromTABLE X

where  col1 in ('abc','aaaa',ddd,'zxs','q','w'.......and so on).

 

I am looking for an easy smart way to convet this into power query single filter command.

 

Thanks

 

1 REPLY 1
v-haibl-msft
Microsoft Employee
Microsoft Employee

@BIXL

 

You can try with following power query in Advance Editor of PBI Desktop.

#"Filtered Rows" = Table.SelectRows(#"Changed Type", each [col1] = "abc" or [col1] = "aaaa" or [col1] = "ddd" or [col1] = "zxs" or [col1] = "q" or [col1] = "w")

convert sql in statement to power query filter code_1.jpg

 

Best Regards,

Herbert

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.