Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Remove all rows if NOT Null

Hello everyone, To start, I have a huge table with over 10k of entries, which took form somewhat like this.   I need to remove the entire rows on condition based on Column2. Specifically, I ...
  • blopez11's avatar
    3 years ago

    Got it.

    Still do what I suggest, but change the generated M code from:

    [Column2] <> null and [Column2] <> ""

    to:

    not ( [Column2] <> null and [Column2] <> "" )