Forum Discussion
Filter out rows with sapces inbetween
- 6 years ago
Anonymous
You could try this
= Table.SelectRows(#"Changed Type", each not Text.Contains([Column]," "))if the blank rows are also filtered out that means that are not real BLANKS , maybe had spaces.
Regards
Victor
Hi Thank you for your reply. The example values I gave are not the real values. The words are more random and do not always start with HELLO. I've modified my example.
Sorry SSS95 but we can only help you with the data you gave us. If you want to show us more in order to help, then do it 🙂
You can still use the function to filter avoiding what the text contains as I have shown. You can find the patterns of your data to clean it up with that example.
- Anonymous6 years agoNot applicable
Yes indeed ibarrau, as mentioned I've modified the post so it should be more clear now 🙂
- Vvelarde6 years agoCommunity Champion
Anonymous
You could try this
= Table.SelectRows(#"Changed Type", each not Text.Contains([Column]," "))if the blank rows are also filtered out that means that are not real BLANKS , maybe had spaces.
Regards
Victor