Forum Discussion

zenisekd's avatar
zenisekd
Super User
5 years ago
Solved

Advanced filtering in power query - multiple conditions

Hi all,  I bumped into a puzzle that I do not understand...   In power query I have two columns - State (that gives values Cancel, Sales, etc..) and Confirmation Date (gives null or specific date)...
  • mahoneypat's avatar
    5 years ago

    Please try this instead

     

    = Table.SelectRows(#"Added Custom", each not ([public.sale_order.confirmation_date] = null and [state] = "cancel"))

     

    Pat