powerquery - Power Query - best way to sub select? -


suppose have column representing object type , column representing object color. want remove blue , red fruits (example of object type) keep other red , blue objects.

how can acheive in power query ?

thanks,

just (un)select (not) matching rows

let     source = excel.currentworkbook(){[name="table1"]}[content],     filtered = table.selectrows(source, each not ([objecttype] = "fruit" , ([objectcolor]="red" or [objectcolor]="blue"))) in     filtered 

Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -