Forum Discussion

ercc026's avatar
ercc026
New Member
3 years ago

Delete rows with numbers

Hello

Is there any way to eliminate all the rows that have only numbers accompanied by commas and spaces ??

Thanks for the help you can give me.

1 Reply

  • ppm1's avatar
    ppm1
    Solution Sage

    You can add a column with this expression, and then filter out the rows with null in the new columns. Replace Column1 with TextN.

     

    = if Text.Length([Column1]) = Text.Length(Text.Select([Column1], {"0".."9", " ", ","})) then null else [Column1]

     

    Pat