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

html - How to custom Bootstrap grid height? -

javascript - pass values from mssql to views in node -

image - python get coordinates (pixels) of corresponding points from clicks -