Forum Discussion
tjeffries
Helper I
6 years agocreate a new table from an existing table
All Extremely new to power bi. I am looking to create a new table from an existing table. But I want to exclude any lines with the values "in Production", "Shipped" and "Delivered" in the ord...
amitchandak
Super User
6 years ago
filter(Table, not(table[Order Status] in {"In Production","Shipped","Delivered"}))
Or
calculatetable(Table,filter(Table, not(table[Order Status] in {"In Production","Shipped","Delivered"})))