Forum Discussion
Anonymous
6 years agoNot applicable
Filter out rows with sapces inbetween
I have a table with a column with these values. (these values are just example values. The real values are random) ABCD JZIEKFFHE HELLO WORLD JDJKA MISTER FUNNY HELLO PBI The record...
- 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
Anonymous
6 years agoNot applicable
Yes indeed ibarrau, as mentioned I've modified the post so it should be more clear now 🙂
Vvelarde
6 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